Skip to content

Commit dba6cf4

Browse files
dependabot[bot]pdabelf5
authored andcommitted
chore(deps): bump the actions group across 1 directory with 2 updates (#7540)
Bumps the actions group with 2 updates in the / directory: [actions/cache](https://github.com/actions/cache) and [fossas/fossa-action](https://github.com/fossas/fossa-action). Updates `actions/cache` from 4.2.2 to 4.2.3 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@d4323d4...5a3ec84) Updates `fossas/fossa-action` from 1.5.0 to 1.6.0 - [Release notes](https://github.com/fossas/fossa-action/releases) - [Commits](fossas/fossa-action@93a52ec...c0a7d01) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: fossas/fossa-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Paul Abel <[email protected]>
1 parent b8a429b commit dba6cf4

File tree

8 files changed

+16
-16
lines changed

8 files changed

+16
-16
lines changed

.github/workflows/build-oss.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ jobs:
147147
echo "full-build: ${{ inputs.full-build }}"
148148
149149
- name: Fetch Cached Artifacts
150-
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
150+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
151151
with:
152152
path: ${{ github.workspace }}/dist
153153
key: nginx-ingress-${{ inputs.go-md5 }}

.github/workflows/build-plus.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ jobs:
160160
echo "full-build: ${{ inputs.full-build }}"
161161
162162
- name: Fetch Cached Artifacts
163-
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
163+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
164164
with:
165165
path: ${{ github.workspace }}/dist
166166
key: nginx-ingress-${{ inputs.go-md5 }}

.github/workflows/build-single-image.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696

9797
- name: Fetch Cached Binary Artifacts
9898
id: binary-cache
99-
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
99+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
100100
with:
101101
path: ${{ github.workspace }}/dist
102102
key: nginx-ingress-${{ steps.vars.outputs.go_code_md5 }}
@@ -121,7 +121,7 @@ jobs:
121121
if: ${{ steps.binary-cache.outputs.binary_cache_hit != 'true' }}
122122

123123
- name: Store Artifacts in Cache
124-
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
124+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
125125
with:
126126
path: ${{ github.workspace }}/dist
127127
key: nginx-ingress-${{ steps.vars.outputs.go_code_md5 }}

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ jobs:
119119
120120
- name: Fetch Cached Binary Artifacts
121121
id: binary-cache
122-
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
122+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
123123
with:
124124
path: ${{ github.workspace }}/dist
125125
key: nginx-ingress-${{ steps.vars.outputs.go_code_md5 }}
@@ -280,7 +280,7 @@ jobs:
280280
if: ${{ needs.checks.outputs.binary_cache_hit != 'true' }}
281281

282282
- name: Store Artifacts in Cache
283-
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
283+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
284284
with:
285285
path: ${{ github.workspace }}/dist
286286
key: nginx-ingress-${{ needs.checks.outputs.go_code_md5 }}
@@ -432,7 +432,7 @@ jobs:
432432
if: ${{ ( needs.checks.outputs.forked_workflow == 'false' || needs.checks.outputs.docs_only == 'false' ) && steps.stable_exists.outputs.exists != 'true' }}
433433

434434
- name: Fetch Cached Artifacts
435-
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
435+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
436436
with:
437437
path: ${{ github.workspace }}/dist
438438
key: nginx-ingress-${{ needs.checks.outputs.go_code_md5 }}

.github/workflows/fossa.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ jobs:
2626
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2727

2828
- name: Scan
29-
uses: fossas/fossa-action@93a52ecf7c3ac7eb40f5de77fd69b1a19524de94 # v1.5.0
29+
uses: fossas/fossa-action@c0a7d013f84c8ee5e910593186598625513cc1e4 # v1.6.0
3030
with:
3131
api-key: ${{ secrets.FOSSA_TOKEN }}

.github/workflows/image-promotion.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
7373
- name: Fetch Cached Binary Artifacts
7474
id: binary-cache
75-
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
75+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
7676
with:
7777
path: ${{ github.workspace }}/dist
7878
key: nginx-ingress-${{ steps.vars.outputs.go_code_md5 }}
@@ -184,7 +184,7 @@ jobs:
184184
if: ${{ needs.checks.outputs.binary_cache_hit != 'true' }}
185185

186186
- name: Store Artifacts in Cache
187-
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
187+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
188188
with:
189189
path: ${{ github.workspace }}/dist
190190
key: nginx-ingress-${{ needs.checks.outputs.go_code_md5 }}

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
8585
- name: Fetch Cached Signed Binary Artifacts
8686
id: binary-cache-sign
87-
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
87+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
8888
with:
8989
path: ${{ github.workspace }}/tarballs
9090
key: nginx-ingress-release-${{ steps.vars.outputs.go_code_md5 }}
@@ -433,7 +433,7 @@ jobs:
433433
ref: ${{ inputs.release_branch }}
434434

435435
- name: Fetch Binary Artifacts from Cache
436-
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
436+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
437437
with:
438438
path: ${{ github.workspace }}/dist
439439
key: nginx-ingress-${{ needs.variables.outputs.go_code_md5 }}
@@ -456,7 +456,7 @@ jobs:
456456
if: ${{ needs.variables.outputs.binary_cache_sign_hit != 'true' }}
457457

458458
- name: Store Tarball Artifacts in Cache
459-
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
459+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
460460
with:
461461
path: ${{ github.workspace }}/tarballs
462462
key: nginx-ingress-release-${{ needs.variables.outputs.go_code_md5 }}
@@ -477,7 +477,7 @@ jobs:
477477
ref: ${{ inputs.release_branch }}
478478

479479
- name: Fetch Cached Tarball Artifacts
480-
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
480+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
481481
with:
482482
key: nginx-ingress-release-${{ needs.variables.outputs.go_code_md5 }}
483483
path: ${{ github.workspace }}/tarballs
@@ -521,7 +521,7 @@ jobs:
521521
ref: ${{ inputs.release_branch }}
522522

523523
- name: Fetch Cached Tarball Artifacts
524-
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
524+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
525525
with:
526526
key: nginx-ingress-release-${{ needs.variables.outputs.go_code_md5 }}
527527
path: ${{ github.workspace }}/tarballs

.github/workflows/setup-smoke.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
if: ${{ inputs.authenticated && steps.stable_exists.outputs.exists != 'true' }}
9999

100100
- name: Fetch Cached Artifacts
101-
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
101+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
102102
with:
103103
path: ${{ github.workspace }}/dist
104104
key: nginx-ingress-${{ inputs.go-md5 }}

0 commit comments

Comments
 (0)