Skip to content

Commit

Permalink
Patch gh action to ensure go 1.20 is used rather than 1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
colmsnowplow committed Apr 5, 2023
1 parent 5fd6aa8 commit 5f2434d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ jobs:
name: Release
strategy:
matrix:
go-version: [1.20]
# Quotes are required: https://github.com/actions/setup-go/issues/326#issuecomment-1415719692
go-version: ['1.20']
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
env:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ jobs:
name: Compile & Test
strategy:
matrix:
go-version: [1.20]
# Quotes are required: https://github.com/actions/setup-go/issues/326#issuecomment-1415719692
go-version: ['1.20']
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
env:
Expand Down

0 comments on commit 5f2434d

Please sign in to comment.