Skip to content

Commit 11ddd89

Browse files
Update github actions
| datasource | package | from | to | | ----------- | ----------------------------------- | ------- | ------- | | github-tags | DavidAnson/markdownlint-cli2-action | v21.0.0 | v22.0.0 | | github-tags | actions/cache | v4.3.0 | v5.0.1 | | github-tags | peter-evans/create-pull-request | v7.0.11 | v8.0.0 | Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 85e6e34 commit 11ddd89

File tree

11 files changed

+16
-16
lines changed

11 files changed

+16
-16
lines changed

.github/workflows/build-artifacts.yml

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

107107
- name: Store Artifacts in Cache
108-
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
108+
uses: actions/cache/save@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
109109
with:
110110
path: ${{ github.workspace }}/dist
111111
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
@@ -201,7 +201,7 @@ jobs:
201201
echo "full-build: ${{ inputs.full-build }}"
202202
203203
- name: Fetch Cached Artifacts
204-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
204+
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
205205
with:
206206
path: ${{ github.workspace }}/dist
207207
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
@@ -229,7 +229,7 @@ jobs:
229229
echo "full-build: ${{ inputs.full-build }}"
230230
231231
- name: Fetch Cached Artifacts
232-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
232+
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
233233
with:
234234
path: ${{ github.workspace }}/dist
235235
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
@@ -116,7 +116,7 @@ jobs:
116116

117117
- name: Fetch Cached Binary Artifacts
118118
id: binary-cache
119-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
119+
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
120120
with:
121121
path: ${{ github.workspace }}/dist
122122
key: nginx-ingress-${{ steps.vars.outputs.go_code_md5 }}
@@ -133,7 +133,7 @@ jobs:
133133
if: ${{ steps.binary-cache.outputs.binary_cache_hit != 'true' }}
134134

135135
- name: Store Artifacts in Cache
136-
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
136+
uses: actions/cache/save@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
137137
with:
138138
path: ${{ github.workspace }}/dist
139139
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/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
124+
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
125125
with:
126126
path: ${{ github.workspace }}/dist
127127
key: nginx-ingress-${{ steps.vars.outputs.go_code_md5 }}
@@ -563,7 +563,7 @@ jobs:
563563
if: ${{ ( needs.checks.outputs.forked_workflow == 'false' || needs.checks.outputs.docs_only == 'false' ) && steps.stable_exists.outputs.exists != 'true' }}
564564

565565
- name: Fetch Cached Artifacts
566-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
566+
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
567567
with:
568568
path: ${{ github.workspace }}/dist
569569
key: nginx-ingress-${{ needs.checks.outputs.go_code_md5 }}

.github/workflows/lint-format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
- name: Checkout Repository
9090
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
9191

92-
- uses: DavidAnson/markdownlint-cli2-action@30a0e04f1870d58f8d717450cc6134995f993c63 # v21.0.0
92+
- uses: DavidAnson/markdownlint-cli2-action@07035fd053f7be764496c0f8d8f9f41f98305101 # v22.0.0
9393
with:
9494
config: .markdownlint-cli2.yaml
9595
globs: "**/*.md"

.github/workflows/release-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
DEBUG: ${{ inputs.debug && 'true' || 'false' }}
104104

105105
- name: Create Pull Request
106-
uses: peter-evans/create-pull-request@22a9089034f40e5a961c8808d113e2c98fb63676 # v7.0.11
106+
uses: peter-evans/create-pull-request@98357b18bf14b5342f975ff684046ec3b2a07725 # v8.0.0
107107
with:
108108
token: ${{ steps.secrets.outputs.NGINX_PAT }}
109109
commit-message: Release ${{ github.event.inputs.new_version }}

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -564,7 +564,7 @@ jobs:
564564
ref: ${{ inputs.release_branch }}
565565

566566
- name: Fetch Binary Artifacts from Cache
567-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
567+
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
568568
with:
569569
path: ${{ github.workspace }}/dist
570570
key: nginx-ingress-${{ needs.variables.outputs.go_code_md5 }}
@@ -585,7 +585,7 @@ jobs:
585585
SYFT_BIN: ${{ steps.syft.outputs.cmd }}
586586

587587
- name: Store Tarball Artifacts in Cache
588-
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
588+
uses: actions/cache/save@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
589589
with:
590590
path: ${{ github.workspace }}/tarballs
591591
key: nginx-ingress-release-${{ needs.variables.outputs.go_code_md5 }}
@@ -606,7 +606,7 @@ jobs:
606606
ref: ${{ inputs.release_branch }}
607607

608608
- name: Fetch Cached Tarball Artifacts
609-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
609+
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
610610
with:
611611
key: nginx-ingress-release-${{ needs.variables.outputs.go_code_md5 }}
612612
path: ${{ github.workspace }}/tarballs
@@ -663,7 +663,7 @@ jobs:
663663
ref: ${{ inputs.release_branch }}
664664

665665
- name: Fetch Cached Tarball Artifacts
666-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
666+
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
667667
with:
668668
key: nginx-ingress-release-${{ needs.variables.outputs.go_code_md5 }}
669669
path: ${{ github.workspace }}/tarballs

.github/workflows/setup-smoke.yml

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

144144
- name: Fetch Cached Artifacts
145-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
145+
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
146146
with:
147147
path: ${{ github.workspace }}/dist
148148
key: nginx-ingress-${{ inputs.go-md5 }}

.github/workflows/update-docker-sha.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
echo "NGINX_PAT=$NGINX_PAT" >> $GITHUB_OUTPUT
9292
9393
- name: Create Pull Request
94-
uses: peter-evans/create-pull-request@22a9089034f40e5a961c8808d113e2c98fb63676 # v7.0.11
94+
uses: peter-evans/create-pull-request@98357b18bf14b5342f975ff684046ec3b2a07725 # v8.0.0
9595
id: pr
9696
with:
9797
token: ${{ steps.secrets.outputs.NGINX_PAT }}

0 commit comments

Comments
 (0)