Skip to content

Commit 6b6313b

Browse files
committed
Bump Docker actions
1 parent 0e8fa43 commit 6b6313b

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
-
2929
name: Docker meta
3030
id: meta
31-
uses: docker/metadata-action@v3
31+
uses: docker/metadata-action@v4
3232
with:
3333
images: |
3434
${{ env.DOCKERHUB_SLUG }}
@@ -43,30 +43,30 @@ jobs:
4343
org.opencontainers.image.vendor=CrazyMax
4444
-
4545
name: Set up QEMU
46-
uses: docker/setup-qemu-action@v1
46+
uses: docker/setup-qemu-action@v2
4747
-
4848
name: Set up Docker Buildx
49-
uses: docker/setup-buildx-action@v1
49+
uses: docker/setup-buildx-action@v2
5050
with:
5151
buildkitd-flags: "--debug"
5252
-
5353
name: Login to DockerHub
5454
if: github.event_name != 'pull_request'
55-
uses: docker/login-action@v1
55+
uses: docker/login-action@v2
5656
with:
5757
username: ${{ secrets.DOCKER_USERNAME }}
5858
password: ${{ secrets.DOCKER_PASSWORD }}
5959
-
6060
name: Login to GHCR
6161
if: github.event_name != 'pull_request'
62-
uses: docker/login-action@v1
62+
uses: docker/login-action@v2
6363
with:
6464
registry: ghcr.io
6565
username: ${{ github.repository_owner }}
6666
password: ${{ secrets.GITHUB_TOKEN }}
6767
-
6868
name: Build
69-
uses: docker/bake-action@v1
69+
uses: docker/bake-action@v2
7070
with:
7171
files: |
7272
./docker-bake.hcl

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ jobs:
2929
echo ::set-output name=running_log_check::ready to handle connections
3030
-
3131
name: Set up QEMU
32-
uses: docker/setup-qemu-action@v1
32+
uses: docker/setup-qemu-action@v2
3333
-
3434
name: Set up Docker Buildx
35-
uses: docker/setup-buildx-action@v1
35+
uses: docker/setup-buildx-action@v2
3636
-
3737
name: Build
38-
uses: docker/bake-action@v1
38+
uses: docker/bake-action@v2
3939
with:
4040
targets: image-local
4141
env:

0 commit comments

Comments
 (0)