Skip to content

Commit

Permalink
CHORE: Increase minimum Go version to 1.21 (#2590)
Browse files Browse the repository at this point in the history
  • Loading branch information
tlimoncelli authored Oct 8, 2023
1 parent 9abbf44 commit 7bf5fc6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
build:
runs-on: ubuntu-latest
container:
image: golang:1.20
image: golang:1.21
env:
TEST_RESULTS: "/tmp/test-results"
steps:
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
needs: integration-test-providers
runs-on: ubuntu-latest
container:
image: golang:1.20
image: golang:1.21
env:
TEST_RESULTS: "/tmp/test-results"
GOTESTSUM_FORMAT: testname
Expand Down Expand Up @@ -199,7 +199,7 @@ jobs:
if: github.ref != 'refs/heads/master' && github.ref != 'refs/heads/main'
runs-on: ubuntu-latest
container:
image: golang:1.20
image: golang:1.21
needs:
- integration-test-providers
- integrtests-diff1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/draft_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ^1.20
go-version: ^1.21

# For some reason goreleaser isn't correctly setting the version
# string used by "dnscontrol version". Therefore, we're forcing the
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml.DISABLED
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ^1.20
go-version: ^1.21

- name: Build binaries
run: go run build/build.go
Expand Down

0 comments on commit 7bf5fc6

Please sign in to comment.