Skip to content

Commit 68a1ef1

Browse files
committed
Unpin github actions
1 parent d14a6bc commit 68a1ef1

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/docker-build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,19 +33,19 @@ jobs:
3333
# https://github.com/sigstore/cosign-installer
3434
- name: Install cosign
3535
if: github.event_name != 'pull_request'
36-
uses: sigstore/cosign-installer@6e04d228eb30da1757ee4e1dd75a0ec73a653e06 #v3.1.1
36+
uses: sigstore/cosign-installer@v3.1.1
3737
with:
3838
cosign-release: 'v2.1.1'
3939

4040
# Workaround: https://github.com/docker/build-push-action/issues/461
4141
- name: Setup Docker buildx
42-
uses: docker/setup-buildx-action@79abd3f86f79a9d68a23c75a09a9a85889262adf
42+
uses: docker/setup-buildx-action@v3
4343

4444
# Login against a Docker registry except on PR
4545
# https://github.com/docker/login-action
4646
- name: Log into registry ${{ env.REGISTRY }}
4747
if: github.event_name != 'pull_request'
48-
uses: docker/login-action@28218f9b04b4f3f62068d7b6ce6ca5b26e35336c
48+
uses: docker/login-action@v3
4949
with:
5050
registry: ${{ env.REGISTRY }}
5151
username: ${{ github.actor }}
@@ -55,15 +55,15 @@ jobs:
5555
# https://github.com/docker/metadata-action
5656
- name: Extract Docker metadata
5757
id: meta
58-
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
58+
uses: docker/metadata-action@v5.5.1
5959
with:
6060
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
6161

6262
# Build and push Docker image with Buildx (don't push on PR)
6363
# https://github.com/docker/build-push-action
6464
- name: Build and push Docker image
6565
id: build-and-push
66-
uses: docker/build-push-action@ac9327eae2b366085ac7f6a2d02df8aa8ead720a
66+
uses: docker/build-push-action@v5.1.0
6767
with:
6868
context: .
6969
push: ${{ github.event_name != 'pull_request' }}

0 commit comments

Comments
 (0)