Skip to content

Commit

Permalink
Use vX tags for actions in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jonnystoten committed Oct 30, 2023
1 parent 6b29027 commit 54a2443
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/docker-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
uses: crazy-max/ghaction-github-runtime@v2

- name: Setup Docker buildx
uses: docker/setup-buildx-action@v3.0.0
uses: docker/setup-buildx-action@v3
with:
driver-opts: |
image=openpubkey/buildkit:opk-signing
Expand All @@ -41,20 +41,20 @@ jobs:
- name: Log into registry
if: ${{ github.event_name == 'push' || github.event.inputs.push }}
uses: docker/login-action@v2.1.0
uses: docker/login-action@v2
with:
username: jonnystoten2
password: ${{ secrets.DOCKERHUB_WRITE_PAT }}

- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@v4.4.0
uses: docker/metadata-action@v4
with:
images: ${{ env.IMAGE_NAME }}

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

0 comments on commit 54a2443

Please sign in to comment.