Skip to content

Commit

Permalink
ci: update action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
pnicto committed Mar 26, 2024
1 parent a6229b5 commit 1fc3200
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
uses: actions/checkout@v4
with:
fetch-depth: 0
- run: git fetch --force --tags
- name: Set up go
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: stable
- name: Rename sample.config.json to config.json
run: cat sample.config.json > config.json
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4
uses: goreleaser/goreleaser-action@v5
with:
distribution: goreleaser
version: latest
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
uses: actions/checkout@v4
- name: Set up go
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: stable
- name: Run tests
run: go test -v ./...
run: go test -v ./...

0 comments on commit 1fc3200

Please sign in to comment.