Skip to content

Commit

Permalink
bump golang versions to use v1.20 and v1.21
Browse files Browse the repository at this point in the history
Signed-off-by: Guillaume Lours <[email protected]>
  • Loading branch information
glours authored and ndeloof committed Nov 21, 2023
1 parent f2a0f5d commit 668f1f2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Check license
run: DOCKER_BUILDKIT=1 make check-license
- name: Check schema
Expand All @@ -20,15 +20,15 @@ jobs:
test:
strategy:
matrix:
go-version: ['1.20', '1.19']
go-version: ['1.21', '1.20']
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
timeout-minutes: 10
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v3
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
check-latest: true
Expand Down
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/compose-spec/compose-go/v2

go 1.19
go 1.20

require (
github.com/distribution/reference v0.5.0
Expand Down

0 comments on commit 668f1f2

Please sign in to comment.