diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2023-09-25 08:22:07 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2023-09-25 08:22:07 +0000 |
commit | 73334e48e395cd0ac4fbef0611609a3bd70abfe2 (patch) | |
tree | 8881d2482e8a19e3c40e148571851d75a7bb2a9b /.github/workflows/docker-publish.yml | |
parent | Adding upstream version 2.3~rc5. (diff) | |
download | nvme-stas-73334e48e395cd0ac4fbef0611609a3bd70abfe2.tar.xz nvme-stas-73334e48e395cd0ac4fbef0611609a3bd70abfe2.zip |
Adding upstream version 2.3.upstream/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' }} |