Skip to content

Commit

Permalink
chore: bump dependent github actions versions
Browse files Browse the repository at this point in the history
  • Loading branch information
natesales committed Oct 2, 2023
1 parent e15fef5 commit e9ab217
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ 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@v2
uses: actions/setup-go@v4
with:
go-version: 1.21
- name: Run GoReleaser
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v2
- uses: actions/setup-go@v4
with:
go-version: 1.21
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: go build -v ./...
- run: go install github.com/jpoles1/gopherbadger@latest
- run: go install github.com/gotesttools/gotestfmt/v2/cmd/gotestfmt@latest
Expand All @@ -35,7 +35,7 @@ jobs:
go test -json -v -covermode atomic -coverprofile=cover.out ./... 2>&1 | tee /tmp/gotest.log | gotestfmt
- name: Upload original test log
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
if: always()
with:
name: test-log
Expand Down

0 comments on commit e9ab217

Please sign in to comment.