Skip to content

Commit

Permalink
Update GitHub actions to latest versions
Browse files Browse the repository at this point in the history
  • Loading branch information
hansmi committed Sep 7, 2022
1 parent e4e4c00 commit 0e36fb3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Go setup
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: 1

- uses: actions/cache@v2
- uses: actions/cache@v3
with:
# https://github.com/actions/cache/blob/main/examples.md#go---modules
path: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
# Required by GoReleaser
fetch-depth: 0

- name: Go setup
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: 1

Expand All @@ -40,7 +40,7 @@ jobs:
echo "::set-output name=goreleaser_args::${args[*]}"
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
uses: goreleaser/goreleaser-action@v3
with:
distribution: goreleaser
version: latest
Expand All @@ -49,7 +49,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Upload assets
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: wp2reg-luxws-${{ hashFiles('dist/**') }}
path: dist/**
Expand Down

0 comments on commit 0e36fb3

Please sign in to comment.