Skip to content

Commit

Permalink
Update release.yml
Browse files Browse the repository at this point in the history
Update actions to latest version to remove node EOL warnings
  • Loading branch information
chris-bateman authored and ChrisPates committed Sep 6, 2023
1 parent 63140f5 commit 802058d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Setup go
uses: actions/setup-go@v2
uses: actions/setup-go@v4
with:
go-version: '1.20.x'

Expand All @@ -32,18 +32,18 @@ jobs:
needs: [ test ]
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Unshallow
run: git fetch --prune --unshallow

- name: Set up Go
uses: actions/setup-go@v2
uses: actions/setup-go@v4
with:
go-version: '1.20.x'

- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
uses: goreleaser/goreleaser-action@v4
with:
version: latest
args: release --rm-dist
Expand Down

0 comments on commit 802058d

Please sign in to comment.