Skip to content

Commit

Permalink
updated github workflow to use go 1.21
Browse files Browse the repository at this point in the history
  • Loading branch information
gr33nbl00d committed Feb 14, 2024
1 parent aaf1335 commit e374f13
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,13 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
go: [ '1.19', '1.20' ]
go: [ '1.21']

include:
# Set the minimum Go patch version for the given Go minor
# Usable via ${{ matrix.GO_SEMVER }}
- go: '1.19'
GO_SEMVER: '~1.19.9'

- go: '1.20'
GO_SEMVER: '~1.20.4'
- go: '1.21'
GO_SEMVER: '1.21.7'

# Set some variables per OS, usable via ${{ matrix.VAR }}
# CADDY_BIN_PATH: the path to the compiled Caddy binary, for artifact publishing
Expand All @@ -43,7 +40,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
go-version: 1.21

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

0 comments on commit e374f13

Please sign in to comment.