diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8ef59d9..0039ef2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: - name: Setup go uses: actions/setup-go@v4 with: - go-version: 1.21.5 + go-version: 1.22 cache: false - name: Unshallow @@ -49,7 +49,7 @@ jobs: - name: Run govulncheck uses: golang/govulncheck-action@v1 with: - go-version-input: 1.21 + go-version-input: 1.22 go-package: ./... cache: false diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8d6023e..7376aa3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,7 +15,7 @@ jobs: - name: Setup go uses: actions/setup-go@v4 with: - go-version: 1.21.5 + go-version: 1.22 - name: Run goreleaser uses: goreleaser/goreleaser-action@v4 diff --git a/go.mod b/go.mod index 4cd4da9..221dbdf 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/nekrassov01/alpen -go 1.21 +go 1.22.3 require ( github.com/mattn/go-isatty v0.0.20 diff --git a/version.go b/version.go index 73acbcf..c0be43d 100644 --- a/version.go +++ b/version.go @@ -1,5 +1,5 @@ package main -const Version = "0.0.21" +const Version = "0.0.22" var Revision = "HEAD"