diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2023-09-25 08:22:11 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2023-09-25 08:22:11 +0000 |
commit | 30b778de4192b1985b253364d9e4882137b6954d (patch) | |
tree | b3cb50f7c959373081f40d6cc291f39dc9e49ead /.github/workflows/docker-publish.yml | |
parent | Releasing debian version 2.3~rc5-1. (diff) | |
download | nvme-stas-30b778de4192b1985b253364d9e4882137b6954d.tar.xz nvme-stas-30b778de4192b1985b253364d9e4882137b6954d.zip |
Merging upstream version 2.3.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '.github/workflows/docker-publish.yml')
-rw-r--r-- | .github/workflows/docker-publish.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index a94e7b3..3e183c0 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -32,13 +32,13 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Login against a Docker registry except on PR # https://github.com/docker/login-action - name: Log into registry ${{ env.REGISTRY }} if: github.event_name != 'pull_request' - uses: docker/login-action@465a07811f14bebb1938fbed4728c6a1ff8901fc + uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} @@ -48,14 +48,14 @@ jobs: # https://github.com/docker/metadata-action - name: Extract Docker metadata id: meta - uses: docker/metadata-action@818d4b7b91585d195f67373fd9cb0332e31a7175 + uses: docker/metadata-action@96383f45573cb7f253c731d3b3ab81c87ef81934 with: images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} # Build and push Docker image with Buildx (don't push on PR) # https://github.com/docker/build-push-action - name: Build and push Docker image - uses: docker/build-push-action@2eb1c1961a95fc15694676618e422e8ba1d63825 + uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 with: context: . push: ${{ github.event_name != 'pull_request' }} |