Skip to content

Commit

Permalink
Update CI/CD routines (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
Clorith authored Nov 11, 2024
1 parent eb8eb03 commit a4cb6cc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/new-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,20 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup GO environment
uses: actions/setup-go@v2
uses: actions/setup-go@v5
with:
go-version: "^1.22.0"

- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
uses: goreleaser/goreleaser-action@v6
with:
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6 changes: 3 additions & 3 deletions .github/workflows/test-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Setup GO environment
uses: actions/setup-go@v2
uses: actions/setup-go@v5
with:
go-version: '^1.22.1'

Expand All @@ -31,4 +31,4 @@ jobs:
- name: Test benchmark performance
run: |
go test -bench=. ./...
go test -bench=. ./...

0 comments on commit a4cb6cc

Please sign in to comment.