Skip to content

Commit 745e189

Browse files
[cherry-pick] chore(deps): bump the actions group across 1 directory with 4 updates (#7118)
chore(deps): bump the actions group across 1 directory with 4 updates (#7107) Bumps the actions group with 4 updates in the / directory: [docker/setup-qemu-action](https://github.com/docker/setup-qemu-action), [docker/build-push-action](https://github.com/docker/build-push-action), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [nginxinc/aws-marketplace-publish](https://github.com/nginxinc/aws-marketplace-publish). Updates `docker/setup-qemu-action` from 3.2.0 to 3.3.0 - [Release notes](https://github.com/docker/setup-qemu-action/releases) - [Commits](docker/setup-qemu-action@49b3bc8...53851d1) Updates `docker/build-push-action` from 6.10.0 to 6.11.0 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](docker/build-push-action@48aba3b...b32b51a) Updates `actions/upload-artifact` from 4.5.0 to 4.6.0 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@6f51ac0...65c4c4a) Updates `nginxinc/aws-marketplace-publish` from 1.0.7 to 1.0.8 - [Release notes](https://github.com/nginxinc/aws-marketplace-publish/releases) - [Commits](nginx/aws-marketplace-publish@108e752...accf7b4) --- updated-dependencies: - dependency-name: docker/setup-qemu-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: nginxinc/aws-marketplace-publish dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 7441222 commit 745e189

10 files changed

+13
-13
lines changed

.github/workflows/build-base-images.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3.8.0
6262

6363
- name: Setup QEMU
64-
uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3.2.0
64+
uses: docker/setup-qemu-action@53851d14592bedcffcf25ea515637cff71ef929a # v3.3.0
6565
with:
6666
platforms: arm,arm64,ppc64le,s390x
6767

@@ -126,7 +126,7 @@ jobs:
126126
uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3.8.0
127127

128128
- name: Setup QEMU
129-
uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3.2.0
129+
uses: docker/setup-qemu-action@53851d14592bedcffcf25ea515637cff71ef929a # v3.3.0
130130
with:
131131
platforms: arm64,s390x
132132

.github/workflows/build-oss.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ jobs:
113113
if: ${{ inputs.authenticated && ! inputs.full-build }}
114114

115115
- name: Setup QEMU
116-
uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3.2.0
116+
uses: docker/setup-qemu-action@53851d14592bedcffcf25ea515637cff71ef929a # v3.3.0
117117
with:
118118
platforms: arm,arm64,ppc64le,s390x
119119
if: ${{ steps.images_exist.outputs.base_exists != 'true' || steps.images_exist.outputs.target_exists != 'true' }}

.github/workflows/build-ot-dependency.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
echo "nginx_version=${nginx_version}" >> $GITHUB_OUTPUT
5151
5252
- name: Setup QEMU
53-
uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3.2.0
53+
uses: docker/setup-qemu-action@53851d14592bedcffcf25ea515637cff71ef929a # v3.3.0
5454
with:
5555
platforms: arm,arm64,ppc64le,s390x
5656

.github/workflows/build-plus.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ jobs:
120120
if: ${{ inputs.authenticated && ! inputs.full-build }}
121121

122122
- name: Setup QEMU
123-
uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3.2.0
123+
uses: docker/setup-qemu-action@53851d14592bedcffcf25ea515637cff71ef929a # v3.3.0
124124
with:
125125
platforms: arm,arm64,ppc64le,s390x
126126
if: ${{ steps.images_exist.outputs.base_exists != 'true' || steps.images_exist.outputs.target_exists != 'true' }}

.github/workflows/build-ubi-dependency.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
9393

9494
- name: Setup QEMU
95-
uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3.2.0
95+
uses: docker/setup-qemu-action@53851d14592bedcffcf25ea515637cff71ef929a # v3.3.0
9696
with:
9797
platforms: arm64,ppc64le,s390x
9898

.github/workflows/image-promotion.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ jobs:
461461
summary: true
462462

463463
- name: Upload Scan Results to Github Artifacts
464-
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
464+
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
465465
with:
466466
name: "${{ github.ref_name }}-${{ steps.directory.outputs.directory }}"
467467
path: "${{ steps.directory.outputs.directory }}/"
@@ -550,7 +550,7 @@ jobs:
550550
summary: true
551551

552552
- name: Upload Scan Results to Github Artifacts
553-
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
553+
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
554554
with:
555555
name: "${{ github.ref_name }}-${{ steps.directory.outputs.directory }}"
556556
path: "${{ steps.directory.outputs.directory }}/"
@@ -646,7 +646,7 @@ jobs:
646646
summary: true
647647

648648
- name: Upload Scan Results to Github Artifacts
649-
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
649+
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
650650
with:
651651
name: "${{ github.ref_name }}-${{ steps.directory.outputs.directory }}"
652652
path: "${{ steps.directory.outputs.directory }}/"

.github/workflows/patch-image.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3.8.0
5151

5252
- name: Setup QEMU
53-
uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3.2.0
53+
uses: docker/setup-qemu-action@53851d14592bedcffcf25ea515637cff71ef929a # v3.3.0
5454
with:
5555
platforms: arm,arm64,ppc64le,s390x
5656

.github/workflows/regression.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ jobs:
284284
plus-jwt: ${{ secrets.PLUS_JWT }}
285285

286286
- name: Upload Test Results
287-
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
287+
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
288288
with:
289289
name: ${{ steps.regression-tests.outputs.test-results-name }}
290290
path: ${{ steps.regression-tests.outputs.test-results-path }}

.github/workflows/scorecards.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
5050
# format to the repository Actions tab.
5151
- name: "Upload artifact"
52-
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
52+
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
5353
with:
5454
name: SARIF file
5555
path: results.sarif

.github/workflows/setup-smoke.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ jobs:
169169
if: ${{ steps.stable_exists.outputs.exists != 'true' }}
170170

171171
- name: Upload Test Results
172-
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
172+
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
173173
with:
174174
name: ${{ steps.smoke-tests.outputs.test-results-name }}
175175
path: ${{ steps.smoke-tests.outputs.test-results-path }}

0 commit comments

Comments
 (0)