Skip to content

Commit

Permalink
Update workflow to run on latest versions of actions which runs on No…
Browse files Browse the repository at this point in the history
…de20 due to Node16 deprecation
  • Loading branch information
pranavanba authored Jul 9, 2024
1 parent 09e42d0 commit 33c0b10
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker-build-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
uses: actions/checkout@v4

- name: Log in to the Container registry
uses: docker/login-action@v2.1.0
uses: docker/login-action@v3.2.0
if: github.event_name != 'pull_request'
with:
registry: ${{ env.REGISTRY }}
Expand All @@ -41,12 +41,12 @@ jobs:

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4.1.1
uses: docker/metadata-action@v5.5.1
with:
images: ${{ env.IMAGE_PATH }}

- name: Build and push Docker image
uses: docker/build-push-action@v3.2.0
uses: docker/build-push-action@v6.3.0
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
Expand Down

0 comments on commit 33c0b10

Please sign in to comment.