Skip to content

Commit 3cf0de7

Browse files
committed
Updated GitHub actions to their latest version.
1 parent 488141f commit 3cf0de7

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/build-image.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -100,22 +100,22 @@ jobs:
100100
#echo "build_date=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> $GITHUB_OUTPUT
101101
102102
- name: Setup QEMU
103-
uses: docker/setup-qemu-action@v2
103+
uses: docker/setup-qemu-action@v3
104104
with:
105105
platforms: arm,arm64,ppc64le,mips64,s390x
106106

107107
- name: Setup Docker Buildx
108-
uses: docker/setup-buildx-action@v2
108+
uses: docker/setup-buildx-action@v3
109109

110110
- name: Login to DockerHub
111111
if: ${{ steps.prep.outputs.is_release == 'yes' }}
112-
uses: docker/login-action@v2
112+
uses: docker/login-action@v3
113113
with:
114114
username: ${{ secrets.DOCKERHUB_USERNAME }}
115115
password: ${{ secrets.DOCKERHUB_PASSWORD }}
116116

117117
- name: Build and push
118-
uses: docker/build-push-action@v4
118+
uses: docker/build-push-action@v5
119119
with:
120120
push: ${{ steps.prep.outputs.is_release == 'yes' }}
121121
provenance: false
@@ -132,12 +132,12 @@ jobs:
132132
docker buildx imagetools inspect ${{ env.DOCKER_IMAGE_NAME }}:${{ steps.prep.outputs.version }}
133133
134134
- name: Checkout
135-
uses: actions/checkout@v3
135+
uses: actions/checkout@v4
136136
if: ${{ steps.prep.outputs.release_type == 'standard' }}
137137

138138
- name: Dockerhub description
139139
if: ${{ steps.prep.outputs.release_type == 'standard' }}
140-
uses: peter-evans/dockerhub-description@v3
140+
uses: peter-evans/dockerhub-description@v4
141141
with:
142142
username: ${{ secrets.DOCKERHUB_USERNAME }}
143143
password: ${{ secrets.DOCKERHUB_PASSWORD }}

0 commit comments

Comments
 (0)