Skip to content

Commit

Permalink
Combining dependabot updates into one PR (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
madelen-at-work authored Sep 21, 2023
1 parent d1b2a8d commit 483830f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/actions/docker-build-push-action/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,19 +64,19 @@ runs:
using: composite
steps:
- name: Set up Docker buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
- name: Set up QEMU
if: ${{ inputs.use_qemu == 'true'}}
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3
- name: Log in to the container registry
if: ${{ inputs.push == 'true' }}
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ${{ inputs.registry }}
username: ${{ inputs.registry_user }}
password: ${{ inputs.registry_token }}
- name: Build and push image to registry
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
context: .
push: ${{ inputs.push }}
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/metadata-action/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ runs:
steps:
- name: Create metadata for docker image
id: meta
uses: docker/metadata-action@v4
uses: docker/metadata-action@v5
with:
images: ${{ inputs.repository }}
# adds the suffix for all tags, even latest.
Expand Down

0 comments on commit 483830f

Please sign in to comment.