Skip to content

Commit

Permalink
update go version to 1.21
Browse files Browse the repository at this point in the history
  • Loading branch information
romain-dartigues committed Sep 12, 2023
1 parent 40df64e commit e22da57
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: goreleaser

on:
push:
# not not consider simplec commit
# do not consider simple commit
branches:
- '!*'
# consider only release and pre-release tags
Expand All @@ -22,7 +22,7 @@ jobs:
- name: set up go
uses: actions/setup-go@v2
with:
go-version: ">=1.20"
go-version: ">=1.21"

- name: cache go modules
uses: actions/cache@v1
Expand All @@ -36,7 +36,7 @@ jobs:
run: |
go mod vendor
if [ ! -z "$(git status --porcelain)" ]; then
echo "::error::vendor directory if not synched with go.mod, please run go mod vendor"
echo "::error::vendor directory if not synced with go.mod, please run go mod vendor"
exit 1
fi
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: set up go
uses: actions/setup-go@v2
with:
go-version: 1.20
go-version: 1.21

- name: cache go modules
uses: actions/cache@v1
Expand Down

0 comments on commit e22da57

Please sign in to comment.