Skip to content

Commit 184548f

Browse files
build(deps): bump the docker group with 4 updates (#3511)
Bumps the docker group with 4 updates: [docker/setup-qemu-action](https://github.com/docker/setup-qemu-action), [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action), [docker/login-action](https://github.com/docker/login-action) and [docker/build-push-action](https://github.com/docker/build-push-action). Updates `docker/setup-qemu-action` from 3.7.0 to 4.0.0 - [Release notes](https://github.com/docker/setup-qemu-action/releases) - [Commits](docker/setup-qemu-action@c7c5346...ce36039) Updates `docker/setup-buildx-action` from 3.12.0 to 4.0.0 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](docker/setup-buildx-action@8d2750c...4d04d5d) Updates `docker/login-action` from 3.7.0 to 4.0.0 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@c94ce9f...b45d80f) Updates `docker/build-push-action` from 6.19.2 to 7.0.0 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](docker/build-push-action@10e90e3...d08e5c3) --- updated-dependencies: - dependency-name: docker/setup-qemu-action dependency-version: 4.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: docker - dependency-name: docker/setup-buildx-action dependency-version: 4.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: docker - dependency-name: docker/login-action dependency-version: 4.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: docker - dependency-name: docker/build-push-action dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: docker ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent ec7a753 commit 184548f

18 files changed

+50
-50
lines changed

.github/workflows/pre-main.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -428,9 +428,9 @@ jobs:
428428
ref: ${{ github.sha }}
429429

430430
- name: Set up QEMU
431-
uses: docker/setup-qemu-action@c7c53464625b32c7a7e944ae62b3e17d2b600130 # v3.7.0
431+
uses: docker/setup-qemu-action@ce360397dd3f832beb865e1373c09c0e9f86d70a # v4.0.0
432432
- name: Set up Docker Buildx
433-
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
433+
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0
434434

435435
# Restart docker using /mnt/docker-storage (sdb) instead of /var/lib/docker (sda).
436436
# This step needs to be done right after the partner repo's bootstrap scripts, as they
@@ -439,15 +439,15 @@ jobs:
439439
uses: ./.github/actions/setup-docker-storage
440440

441441
- name: Login to Quay.io
442-
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
442+
uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 # v4.0.0
443443
if: ${{ github.ref == 'refs/heads/main' && github.repository_owner == 'redhat-best-practices-for-k8s' }}
444444
with:
445445
registry: ${{ env.REGISTRY }}
446446
username: ${{ secrets.QUAY_ROBOT_USERNAME }}
447447
password: ${{ secrets.QUAY_ROBOT_TOKEN }}
448448

449449
- name: Build and push the unstable images for multi-arch
450-
uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6.19.2
450+
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294 # v7.0.0
451451
if: ${{ github.ref == 'refs/heads/main' && github.repository_owner == 'redhat-best-practices-for-k8s' }}
452452
with:
453453
context: .
@@ -481,9 +481,9 @@ jobs:
481481
ref: ${{ github.sha }}
482482

483483
- name: Set up QEMU
484-
uses: docker/setup-qemu-action@c7c53464625b32c7a7e944ae62b3e17d2b600130 # v3.7.0
484+
uses: docker/setup-qemu-action@ce360397dd3f832beb865e1373c09c0e9f86d70a # v4.0.0
485485
- name: Set up Docker Buildx
486-
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
486+
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0
487487

488488
# Restart docker using /mnt/docker-storage (sdb) instead of /var/lib/docker (sda).
489489
# This step needs to be done right after the partner repo's bootstrap scripts, as they
@@ -492,15 +492,15 @@ jobs:
492492
uses: ./.github/actions/setup-docker-storage
493493

494494
- name: Login to Quay.io
495-
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
495+
uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 # v4.0.0
496496
if: ${{ github.ref == 'refs/heads/main' && github.repository_owner == 'redhat-best-practices-for-k8s' }}
497497
with:
498498
registry: ${{ env.REGISTRY }}
499499
username: ${{ secrets.QUAY_ROBOT_USERNAME_K8S }}
500500
password: ${{ secrets.QUAY_ROBOT_TOKEN_K8S }}
501501

502502
- name: Build and push the unstable images for multi-arch
503-
uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6.19.2
503+
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294 # v7.0.0
504504
if: ${{ github.ref == 'refs/heads/main' && github.repository_owner == 'redhat-best-practices-for-k8s' }}
505505
with:
506506
context: .

.github/workflows/qe-hosted-arm.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
continue-on-error: true
4242

4343
- name: Setup docker buildx
44-
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
44+
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0
4545

4646
# Restart docker using /mnt/docker-storage (sdb) instead of /var/lib/docker (sda).
4747
# This step needs to be done right after the partner repo's bootstrap scripts, as they
@@ -50,7 +50,7 @@ jobs:
5050
uses: ./.github/actions/setup-docker-storage
5151

5252
- name: Build temporary image tag for this PR
53-
uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6.19.2
53+
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294 # v7.0.0
5454
with:
5555
context: .
5656
file: ./Dockerfile
@@ -92,7 +92,7 @@ jobs:
9292

9393
# Download the image from the artifact and load it into the docker daemon.
9494
- name: Setup docker buildx
95-
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
95+
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0
9696

9797
- name: Setup partner cluster
9898
uses: ./.github/actions/setup-partner-cluster

.github/workflows/qe-hosted.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
continue-on-error: true
4747

4848
- name: Setup docker buildx
49-
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
49+
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0
5050

5151
# Restart docker using /mnt/docker-storage (sdb) instead of /var/lib/docker (sda).
5252
# This step needs to be done right after the partner repo's bootstrap scripts, as they
@@ -55,7 +55,7 @@ jobs:
5555
uses: ./.github/actions/setup-docker-storage
5656

5757
- name: Build temporary image tag for this PR
58-
uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6.19.2
58+
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294 # v7.0.0
5959
with:
6060
context: .
6161
file: ./Dockerfile
@@ -180,7 +180,7 @@ jobs:
180180

181181
# Download the image from the artifact and load it into the docker daemon.
182182
- name: Setup docker buildx
183-
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
183+
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0
184184

185185
- name: Setup partner cluster
186186
uses: ./.github/actions/setup-partner-cluster

.github/workflows/qe-ocp-414-intrusive.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ jobs:
3333
continue-on-error: true
3434

3535
- name: Setup docker buildx
36-
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
36+
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0
3737

3838
- name: Build temporary image tag for this PR
39-
uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6.19.2
39+
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294 # v7.0.0
4040
with:
4141
context: .
4242
file: ./Dockerfile

.github/workflows/qe-ocp-414.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ jobs:
3333
continue-on-error: true
3434

3535
- name: Setup docker buildx
36-
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
36+
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0
3737

3838
- name: Build temporary image tag for this PR
39-
uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6.19.2
39+
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294 # v7.0.0
4040
with:
4141
context: .
4242
file: ./Dockerfile

.github/workflows/qe-ocp-416-intrusive.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ jobs:
3333
continue-on-error: true
3434

3535
- name: Setup docker buildx
36-
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
36+
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0
3737

3838
- name: Build temporary image tag for this PR
39-
uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6.19.2
39+
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294 # v7.0.0
4040
with:
4141
context: .
4242
file: ./Dockerfile

.github/workflows/qe-ocp-416.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ jobs:
3333
continue-on-error: true
3434

3535
- name: Setup docker buildx
36-
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
36+
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0
3737

3838
- name: Build temporary image tag for this PR
39-
uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6.19.2
39+
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294 # v7.0.0
4040
with:
4141
context: .
4242
file: ./Dockerfile

.github/workflows/qe-ocp-417-intrusive.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ jobs:
3333
continue-on-error: true
3434

3535
- name: Setup docker buildx
36-
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
36+
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0
3737

3838
- name: Build temporary image tag for this PR
39-
uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6.19.2
39+
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294 # v7.0.0
4040
with:
4141
context: .
4242
file: ./Dockerfile

.github/workflows/qe-ocp-417.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ jobs:
3333
continue-on-error: true
3434

3535
- name: Setup docker buildx
36-
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
36+
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0
3737

3838
- name: Build temporary image tag for this PR
39-
uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6.19.2
39+
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294 # v7.0.0
4040
with:
4141
context: .
4242
file: ./Dockerfile

.github/workflows/qe-ocp-418-intrusive.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ jobs:
3333
continue-on-error: true
3434

3535
- name: Setup docker buildx
36-
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
36+
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0
3737

3838
- name: Build temporary image tag for this PR
39-
uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6.19.2
39+
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294 # v7.0.0
4040
with:
4141
context: .
4242
file: ./Dockerfile

0 commit comments

Comments
 (0)