Skip to content

Commit

Permalink
Update pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
DRuggeri committed Jan 7, 2025
1 parent 3ad19e5 commit 8e12f70
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
go-version:
- 1.23.x
- '1.23.x'
os:
- ubuntu-latest
- macos-latest
Expand All @@ -21,12 +21,12 @@ jobs:

steps:
- name: Install Go
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
go-version: '1.23'

- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Test
run: go test ./...
Expand All @@ -37,14 +37,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set up Go
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: 1.18
go-version: '1.23'

- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4
Expand Down

0 comments on commit 8e12f70

Please sign in to comment.