Skip to content

Commit 1d2e94d

Browse files
authored
Upgrade actions
1 parent 166645f commit 1d2e94d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/docker-publish.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,20 +41,20 @@ jobs:
4141
# https://github.com/sigstore/cosign-installer
4242
- name: Install cosign
4343
if: github.event_name != 'pull_request'
44-
uses: sigstore/cosign-installer@v3.3.0
44+
uses: sigstore/cosign-installer@v3.5.0
4545
with:
46-
cosign-release: 'v1.13.2'
46+
cosign-release: 'v2.2.4'
4747

4848

4949
# Workaround: https://github.com/docker/build-push-action/issues/461
5050
- name: Setup Docker buildx
51-
uses: docker/setup-buildx-action@79abd3f86f79a9d68a23c75a09a9a85889262adf
51+
uses: docker/setup-buildx-action@v3
5252

5353
# Login against a Docker registry except on PR
5454
# https://github.com/docker/login-action
5555
- name: Log into registry ${{ env.REGISTRY }}
5656
if: github.event_name != 'pull_request'
57-
uses: docker/login-action@28218f9b04b4f3f62068d7b6ce6ca5b26e35336c
57+
uses: docker/login-action@v3
5858
with:
5959
registry: ${{ env.REGISTRY }}
6060
username: ${{ secrets.DOCKER_USERNAME }}
@@ -64,15 +64,15 @@ jobs:
6464
# https://github.com/docker/metadata-action
6565
- name: Extract Docker metadata
6666
id: meta
67-
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
67+
uses: docker/metadata-action@v5
6868
with:
6969
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
7070

7171
# Build and push Docker image with Buildx (don't push on PR)
7272
# https://github.com/docker/build-push-action
7373
- name: Build and push Docker image
7474
id: build-and-push
75-
uses: docker/build-push-action@ac9327eae2b366085ac7f6a2d02df8aa8ead720a
75+
uses: docker/build-push-action@v5
7676
with:
7777
context: .
7878
push: ${{ github.event_name != 'pull_request' }}

0 commit comments

Comments
 (0)