Skip to content

Commit

Permalink
build: Fix Go version in pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
VeryStrongFingers committed Mar 19, 2023
1 parent 89c8eac commit 3e8c72b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ jobs:
run: echo "flags=-f .goreleaser.rc.yml" >> $GITHUB_ENV
- name: Checkout code
uses: actions/checkout@v2
- uses: actions/setup-go@v3
- uses: actions/setup-go@v4
with:
go-version: 1.20
go-version: "1.20"
- uses: goreleaser/goreleaser-action@v4
with:
distribution: goreleaser
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
name: Unit Tests
strategy:
matrix:
go-version: [1.20.x]
go-version: ["1.20"]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v2
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- uses: actions/cache@v2
Expand Down

0 comments on commit 3e8c72b

Please sign in to comment.