Skip to content

Commit e513298

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.0 | | 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 26e208b commit e513298

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
@@ -101,7 +101,7 @@ jobs:
101101
if: ${{ inputs.force }}
102102

103103
- name: Store Artifacts in Cache
104-
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
104+
uses: actions/cache/save@a7833574556fa59680c1b7cb190c1735db73ebf0 # v5.0.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
@@ -197,7 +197,7 @@ jobs:
197197
echo "full-build: ${{ inputs.full-build }}"
198198
199199
- name: Fetch Cached Artifacts
200-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
200+
uses: actions/cache/restore@a7833574556fa59680c1b7cb190c1735db73ebf0 # v5.0.0
201201
with:
202202
path: ${{ github.workspace }}/dist
203203
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
@@ -225,7 +225,7 @@ jobs:
225225
echo "full-build: ${{ inputs.full-build }}"
226226
227227
- name: Fetch Cached Artifacts
228-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
228+
uses: actions/cache/restore@a7833574556fa59680c1b7cb190c1735db73ebf0 # v5.0.0
229229
with:
230230
path: ${{ github.workspace }}/dist
231231
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@a7833574556fa59680c1b7cb190c1735db73ebf0 # v5.0.0
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@a7833574556fa59680c1b7cb190c1735db73ebf0 # v5.0.0
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@a7833574556fa59680c1b7cb190c1735db73ebf0 # v5.0.0
125125
with:
126126
path: ${{ github.workspace }}/dist
127127
key: nginx-ingress-${{ steps.vars.outputs.go_code_md5 }}
@@ -562,7 +562,7 @@ jobs:
562562
if: ${{ ( needs.checks.outputs.forked_workflow == 'false' || needs.checks.outputs.docs_only == 'false' ) && steps.stable_exists.outputs.exists != 'true' }}
563563

564564
- name: Fetch Cached Artifacts
565-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
565+
uses: actions/cache/restore@a7833574556fa59680c1b7cb190c1735db73ebf0 # v5.0.0
566566
with:
567567
path: ${{ github.workspace }}/dist
568568
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
@@ -563,7 +563,7 @@ jobs:
563563
ref: ${{ inputs.release_branch }}
564564

565565
- name: Fetch Binary Artifacts from Cache
566-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
566+
uses: actions/cache/restore@a7833574556fa59680c1b7cb190c1735db73ebf0 # v5.0.0
567567
with:
568568
path: ${{ github.workspace }}/dist
569569
key: nginx-ingress-${{ needs.variables.outputs.go_code_md5 }}
@@ -584,7 +584,7 @@ jobs:
584584
SYFT_BIN: ${{ steps.syft.outputs.cmd }}
585585

586586
- name: Store Tarball Artifacts in Cache
587-
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
587+
uses: actions/cache/save@a7833574556fa59680c1b7cb190c1735db73ebf0 # v5.0.0
588588
with:
589589
path: ${{ github.workspace }}/tarballs
590590
key: nginx-ingress-release-${{ needs.variables.outputs.go_code_md5 }}
@@ -605,7 +605,7 @@ jobs:
605605
ref: ${{ inputs.release_branch }}
606606

607607
- name: Fetch Cached Tarball Artifacts
608-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
608+
uses: actions/cache/restore@a7833574556fa59680c1b7cb190c1735db73ebf0 # v5.0.0
609609
with:
610610
key: nginx-ingress-release-${{ needs.variables.outputs.go_code_md5 }}
611611
path: ${{ github.workspace }}/tarballs
@@ -662,7 +662,7 @@ jobs:
662662
ref: ${{ inputs.release_branch }}
663663

664664
- name: Fetch Cached Tarball Artifacts
665-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
665+
uses: actions/cache/restore@a7833574556fa59680c1b7cb190c1735db73ebf0 # v5.0.0
666666
with:
667667
key: nginx-ingress-release-${{ needs.variables.outputs.go_code_md5 }}
668668
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@a7833574556fa59680c1b7cb190c1735db73ebf0 # v5.0.0
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)