Skip to content

Commit c646ca9

Browse files
authored
Merge branch 'main' into chore/allow-easier-nap-agent-updates
2 parents 7dec558 + cb40135 commit c646ca9

17 files changed

+29
-29
lines changed

.github/scripts/requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -311,9 +311,9 @@ pynacl==1.5.0 \
311311
--hash=sha256:a422368fc821589c228f4c49438a368831cb5bbc0eab5ebe1d7fac9dded6567b \
312312
--hash=sha256:e46dae94e34b085175f8abb3b0aaa7da40767865ac82c928eeb9e57e1ea8a543
313313
# via pygithub
314-
requests==2.32.4 \
315-
--hash=sha256:27babd3cda2a6d50b30443204ee89830707d396671944c998b5975b031ac2b2c \
316-
--hash=sha256:27d0316682c8a29834d3264820024b62a36942083d52caf2f14c0591336d3422
314+
requests==2.32.5 \
315+
--hash=sha256:2462f94637a34fd532264295e186976db0f5d453d1cdd31473c85a6a161affb6 \
316+
--hash=sha256:dbba0bac56e100853db0ea71b82b4dfd5fe2bf6d3754a8893c3af500cec7d7cf
317317
# via pygithub
318318
typing-extensions==4.14.0 \
319319
--hash=sha256:8676b788e32f02ab42d9e7c61324048ae4c6d844a399eebace3d4979d75ceef4 \

.github/workflows/build-artifacts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
if: ${{ inputs.force }}
102102

103103
- name: Store Artifacts in Cache
104-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
104+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
105105
with:
106106
path: ${{ github.workspace }}/dist
107107
key: nginx-ingress-${{ inputs.go-md5 }}

.github/workflows/build-oss.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ jobs:
158158
echo "full-build: ${{ inputs.full-build }}"
159159
160160
- name: Fetch Cached Artifacts
161-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
161+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
162162
with:
163163
path: ${{ github.workspace }}/dist
164164
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
@@ -168,7 +168,7 @@ jobs:
168168
echo "full-build: ${{ inputs.full-build }}"
169169
170170
- name: Fetch Cached Artifacts
171-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
171+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
172172
with:
173173
path: ${{ github.workspace }}/dist
174174
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
@@ -94,7 +94,7 @@ jobs:
9494

9595
- name: Fetch Cached Binary Artifacts
9696
id: binary-cache
97-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
97+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
9898
with:
9999
path: ${{ github.workspace }}/dist
100100
key: nginx-ingress-${{ steps.vars.outputs.go_code_md5 }}
@@ -119,7 +119,7 @@ jobs:
119119
if: ${{ steps.binary-cache.outputs.binary_cache_hit != 'true' }}
120120

121121
- name: Store Artifacts in Cache
122-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
122+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
123123
with:
124124
path: ${{ github.workspace }}/dist
125125
key: nginx-ingress-${{ steps.vars.outputs.go_code_md5 }}

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ jobs:
121121
122122
- name: Fetch Cached Binary Artifacts
123123
id: binary-cache
124-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
124+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
125125
with:
126126
path: ${{ github.workspace }}/dist
127127
key: nginx-ingress-${{ steps.vars.outputs.go_code_md5 }}
@@ -459,7 +459,7 @@ jobs:
459459
if: ${{ ( needs.checks.outputs.forked_workflow == 'false' || needs.checks.outputs.docs_only == 'false' ) && steps.stable_exists.outputs.exists != 'true' }}
460460

461461
- name: Fetch Cached Artifacts
462-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
462+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
463463
with:
464464
path: ${{ github.workspace }}/dist
465465
key: nginx-ingress-${{ needs.checks.outputs.go_code_md5 }}

.github/workflows/dependency-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2525

2626
- name: "Dependency Review"
27-
uses: actions/dependency-review-action@595b5aeba73380359d98a5e087f648dbb0edce1b # v4.7.3
27+
uses: actions/dependency-review-action@56339e523c0409420f6c2c9a2f4292bbb3c07dd3 # v4.8.0
2828
with:
2929
config-file: "nginx/k8s-common/dependency-review-config.yml@main"
3030
base-ref: ${{ github.event.pull_request.base.sha || github.event.repository.default_branch }}

.github/workflows/image-promotion.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ jobs:
141141
fi
142142
143143
- name: Upload SARIF file
144-
uses: github/codeql-action/upload-sarif@192325c86100d080feab897ff886c34abd4c83a3 # v3.30.3
144+
uses: github/codeql-action/upload-sarif@303c0aef88fc2fe5ff6d63d3b1596bfd83dfa1f9 # v3.30.4
145145
if: steps.check-sarif.outputs.sarif_has_results == 'true'
146146
with:
147147
sarif_file: govulncheck.sarif
@@ -359,7 +359,7 @@ jobs:
359359
overwrite: true
360360

361361
- name: Upload Scan results to GitHub Security tab
362-
uses: github/codeql-action/upload-sarif@192325c86100d080feab897ff886c34abd4c83a3 # v3.30.3
362+
uses: github/codeql-action/upload-sarif@303c0aef88fc2fe5ff6d63d3b1596bfd83dfa1f9 # v3.30.4
363363
with:
364364
sarif_file: "${{ steps.directory.outputs.directory }}/"
365365

@@ -439,7 +439,7 @@ jobs:
439439
overwrite: true
440440

441441
- name: Upload Scan results to GitHub Security tab
442-
uses: github/codeql-action/upload-sarif@192325c86100d080feab897ff886c34abd4c83a3 # v3.30.3
442+
uses: github/codeql-action/upload-sarif@303c0aef88fc2fe5ff6d63d3b1596bfd83dfa1f9 # v3.30.4
443443
with:
444444
sarif_file: "${{ steps.directory.outputs.directory }}/"
445445

@@ -526,7 +526,7 @@ jobs:
526526
overwrite: true
527527

528528
- name: Upload Scan results to GitHub Security tab
529-
uses: github/codeql-action/upload-sarif@192325c86100d080feab897ff886c34abd4c83a3 # v3.30.3
529+
uses: github/codeql-action/upload-sarif@303c0aef88fc2fe5ff6d63d3b1596bfd83dfa1f9 # v3.30.4
530530
with:
531531
sarif_file: "${{ steps.directory.outputs.directory }}/"
532532
continue-on-error: true
@@ -542,7 +542,7 @@ jobs:
542542
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
543543

544544
- name: Create/Update Draft
545-
uses: lucacome/draft-release@00f74370c044c322da6cb52acc707d62c7762c71 # v1.2.4
545+
uses: lucacome/draft-release@fd099feb33710d1fa27b915a08a7acd6a1fb7fd2 # v2.0.0
546546
id: release-notes
547547
with:
548548
minor-label: "enhancement"

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@ jobs:
474474
ref: ${{ inputs.release_branch }}
475475

476476
- name: Fetch Binary Artifacts from Cache
477-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
477+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
478478
with:
479479
path: ${{ github.workspace }}/dist
480480
key: nginx-ingress-${{ needs.variables.outputs.go_code_md5 }}
@@ -493,7 +493,7 @@ jobs:
493493
SYFT_BIN: ${{ steps.syft.outputs.cmd }}
494494

495495
- name: Store Tarball Artifacts in Cache
496-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
496+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
497497
with:
498498
path: ${{ github.workspace }}/tarballs
499499
key: nginx-ingress-release-${{ needs.variables.outputs.go_code_md5 }}
@@ -515,7 +515,7 @@ jobs:
515515
ref: ${{ inputs.release_branch }}
516516

517517
- name: Fetch Cached Tarball Artifacts
518-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
518+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
519519
with:
520520
key: nginx-ingress-release-${{ needs.variables.outputs.go_code_md5 }}
521521
path: ${{ github.workspace }}/tarballs
@@ -529,7 +529,7 @@ jobs:
529529
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
530530

531531
- name: Azure Upload Release Packages
532-
uses: azure/CLI@089eac9d8cc39f5d003e94f8b65efc51076c9cbd # v2.1.0
532+
uses: azure/CLI@9f7ce6f37c31b777ec6c6b6d1dfe7db79f497956 # v2.2.0
533533
with:
534534
inlineScript: |
535535
for i in $(find tarballs -type f); do
@@ -559,7 +559,7 @@ jobs:
559559
ref: ${{ inputs.release_branch }}
560560

561561
- name: Fetch Cached Tarball Artifacts
562-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
562+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
563563
with:
564564
key: nginx-ingress-release-${{ needs.variables.outputs.go_code_md5 }}
565565
path: ${{ github.workspace }}/tarballs

.github/workflows/scorecards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,6 @@ jobs:
5757

5858
# Upload the results to GitHub's code scanning dashboard.
5959
- name: "Upload to code-scanning"
60-
uses: github/codeql-action/upload-sarif@192325c86100d080feab897ff886c34abd4c83a3 # v3.30.3
60+
uses: github/codeql-action/upload-sarif@303c0aef88fc2fe5ff6d63d3b1596bfd83dfa1f9 # v3.30.4
6161
with:
6262
sarif_file: results.sarif

0 commit comments

Comments
 (0)