Skip to content

Commit

Permalink
Updated GH Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
msoap committed Mar 16, 2024
1 parent 4d43189 commit b690da1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/go.yml
Expand Up @@ -14,12 +14,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.20.x', '1.21.x']
go: ['1.21.x', '1.22.x']
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}

Expand All @@ -36,7 +36,7 @@ jobs:
run: go test -race -v ./...

- name: Coveralls
if: ${{ startsWith(matrix.go, '1.21') && github.event_name == 'push' }}
if: ${{ startsWith(matrix.go, '1.22') && github.event_name == 'push' }}
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Expand Up @@ -13,15 +13,15 @@ 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.x
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v3
uses: goreleaser/goreleaser-action@v5
with:
distribution: goreleaser
version: latest
Expand Down

0 comments on commit b690da1

Please sign in to comment.