Skip to content

Commit

Permalink
⬆️ Upgraded workflow dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
lukecarr authored Sep 2, 2023
1 parent 3833cf0 commit 7ef82d4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fetch-depth: 0

- name: Set up Go
uses: actions/setup-go@v3
uses: actions/setup-go@v4
with:
go-version: 1.20

Expand All @@ -31,7 +31,7 @@ jobs:
${{ runner.os }}-
- name: Set up PNPM
uses: pnpm/action-setup@v2.2.1
uses: pnpm/action-setup@v2
with:
version: 8.7.0
run_install: |
Expand All @@ -42,7 +42,7 @@ jobs:
run: pnpm --dir frontend build

- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
uses: goreleaser/goreleaser-action@v4
with:
version: latest
args: release --rm-dist
Expand All @@ -60,15 +60,15 @@ jobs:
uses: actions/checkout@v3

- name: Log into container registry
uses: docker/login-action@v1
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels)
id: meta
uses: docker/metadata-action@v3
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}

Expand All @@ -77,7 +77,7 @@ jobs:
run: echo ::set-output name=build_date::$(date --iso-8601=minutes)

- name: Build and push image
uses: docker/build-push-action@v2
uses: docker/build-push-action@v4
with:
context: .
push: true
Expand Down

0 comments on commit 7ef82d4

Please sign in to comment.