Skip to content

Commit

Permalink
feat: update to go 1.20
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Kotzbauer <[email protected]>
  • Loading branch information
ckotzbauer committed Feb 5, 2023
1 parent 777cb45 commit a2c25ad
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/code-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
uses: ckotzbauer/actions-toolkit/.github/workflows/[email protected]
with:
install-go: true
go-version: "1.19.5"
go-version: "1.20.0"
lint-commands: |
make bootstrap-tools
make lintsec
Expand All @@ -20,7 +20,7 @@ jobs:
uses: ckotzbauer/actions-toolkit/.github/workflows/[email protected]
with:
install-go: true
go-version: "1.19.5"
go-version: "1.20.0"
lint-commands: |
make bootstrap-tools
make lint
2 changes: 1 addition & 1 deletion .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
release:
uses: ckotzbauer/actions-toolkit/.github/workflows/[email protected]
with:
go-version: "1.19.5"
go-version: "1.20.0"
version: ${{ github.event.inputs.version }}
docker-platforms: linux/amd64,linux/arm64
docker-tags: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
uses: ckotzbauer/actions-toolkit/.github/workflows/[email protected]
with:
install-go: true
go-version: "1.19.5"
go-version: "1.20.0"
install-goreleaser: true
build-commands: make build
test-commands: make test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-snyk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
uses: ckotzbauer/actions-toolkit/.github/workflows/[email protected]
with:
install-go: true
go-version: '1.19.5'
go-version: '1.20.0'
scan-commands: snyk monitor
secrets:
token: ${{ secrets.SNYK_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@ $(TEMPDIR):

.PHONY: bootstrap-tools
bootstrap-tools: $(TEMPDIR)
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(TEMPDIR)/ v1.48.0
curl -sfL https://raw.githubusercontent.com/securego/gosec/master/install.sh | sh -s -- -b $(TEMPDIR)/ v2.12.0
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(TEMPDIR)/ v1.51.1
curl -sfL https://raw.githubusercontent.com/securego/gosec/master/install.sh | sh -s -- -b $(TEMPDIR)/ v2.14.0
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/ckotzbauer/vulnerability-operator

go 1.19
go 1.20

require (
github.com/anchore/grype v0.56.0
Expand Down

0 comments on commit a2c25ad

Please sign in to comment.