From 02293090c8bab921db9860ee7c9d8a0de5e1f6c2 Mon Sep 17 00:00:00 2001 From: James McDuffie Date: Mon, 18 Dec 2023 13:34:32 -0800 Subject: [PATCH 1/2] Update docker-publish.yml versions --- .github/workflows/docker-publish.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 1d7c0ab..50f3bbe 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -60,7 +60,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: lfs: true @@ -68,20 +68,20 @@ jobs: # https://github.com/sigstore/cosign-installer - name: Install cosign if: github.event_name != 'pull_request' - uses: sigstore/cosign-installer@f3c664df7af409cb4873aa5068053ba9d61a57b6 #v2.6.0 + uses: sigstore/cosign-installer@v3.3.0 with: - cosign-release: 'v1.13.1' + cosign-release: 'v2.2.2' # optional - - # Workaround: https://github.com/docker/build-push-action/issues/461 + # GitHub Action to set up Docker Buildx. + # https://github.com/docker/setup-buildx-action - name: Setup Docker buildx - uses: docker/setup-buildx-action@79abd3f86f79a9d68a23c75a09a9a85889262adf + uses: docker/setup-buildx-action@v3 # 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@28218f9b04b4f3f62068d7b6ce6ca5b26e35336c + uses: docker/login-action@v3 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} @@ -91,7 +91,7 @@ jobs: # https://github.com/docker/metadata-action - name: Extract Docker metadata id: meta - uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38 + uses: docker/metadata-action@v5 with: images: ${{ env.REGISTRY }}/${{ github.repository }}/${{ matrix.stack }} @@ -99,7 +99,7 @@ jobs: # https://github.com/docker/build-push-action - name: Build and push Docker image id: build-and-push - uses: docker/build-push-action@ac9327eae2b366085ac7f6a2d02df8aa8ead720a + uses: ddocker/build-push-action@v5 with: context: ${{ matrix.stack }} push: ${{ github.event_name != 'pull_request' }} @@ -122,6 +122,6 @@ jobs: run: echo "${{ steps.meta.outputs.tags }}" | xargs -I {} cosign sign {}@${{ steps.build-and-push.outputs.digest }} - name: Tag as latest - uses: Actions-R-Us/actions-tagger@v2.0.3 + uses: Actions-R-Us/actions-tagger@v2 with: publish_latest_tag: true From 7fe12dac669454715703bba50d0f32d0125c4d6b Mon Sep 17 00:00:00 2001 From: James McDuffie Date: Mon, 18 Dec 2023 13:35:29 -0800 Subject: [PATCH 2/2] Fix typo in docker-publish.yml --- .github/workflows/docker-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 50f3bbe..e7cfa01 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -99,7 +99,7 @@ jobs: # https://github.com/docker/build-push-action - name: Build and push Docker image id: build-and-push - uses: ddocker/build-push-action@v5 + uses: docker/build-push-action@v5 with: context: ${{ matrix.stack }} push: ${{ github.event_name != 'pull_request' }}