Skip to content

Commit fada1a9

Browse files
Bump actions/checkout from 3.5.2 to 3.5.3
Bumps [actions/checkout](https://github.com/actions/checkout) from 3.5.2 to 3.5.3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@8e5e7e5...c85c95e) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 8adaac0 commit fada1a9

File tree

11 files changed

+24
-24
lines changed

11 files changed

+24
-24
lines changed

.github/workflows/build-oss.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
image_digest: ${{ steps.build-push.outputs.digest }}
3131
steps:
3232
- name: Checkout Repository
33-
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
33+
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
3434
with:
3535
ref: ${{ inputs.tag != '' && format('refs/tags/v{0}', inputs.tag) || github.ref }}
3636
fetch-depth: 0

.github/workflows/build-plus.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
runs-on: ubuntu-22.04
3333
steps:
3434
- name: Checkout Repository
35-
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
35+
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
3636
with:
3737
fetch-depth: 0
3838

.github/workflows/ci.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
chart_version: ${{ steps.vars.outputs.chart_version }}
3737
steps:
3838
- name: Checkout Repository
39-
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
39+
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
4040

4141
- name: Setup Golang Environment
4242
uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 # v4.0.1
@@ -68,7 +68,7 @@ jobs:
6868
needs: checks
6969
steps:
7070
- name: Checkout Repository
71-
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
71+
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
7272
- name: Setup Golang Environment
7373
uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 # v4.0.1
7474
with:
@@ -86,7 +86,7 @@ jobs:
8686
if: ${{ github.event_name == 'push' && ! github.ref != 'refs/heads/main' }}
8787
steps:
8888
- name: Checkout Repository
89-
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
89+
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
9090

9191
- name: Create/Update Draft
9292
uses: lucacome/draft-release@b79be3ff634f771230b2b6ee9f47308c5793671a # v0.2.0
@@ -115,7 +115,7 @@ jobs:
115115
needs: [checks, unit-tests]
116116
steps:
117117
- name: Checkout Repository
118-
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
118+
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
119119
with:
120120
fetch-depth: 0
121121

@@ -168,7 +168,7 @@ jobs:
168168
type: plus
169169
steps:
170170
- name: Checkout Repository
171-
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
171+
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
172172
- name: Fetch Cached Artifacts
173173
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1
174174
with:
@@ -262,7 +262,7 @@ jobs:
262262
fi
263263
264264
- name: Checkout Repository
265-
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
265+
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
266266
- name: Docker Buildx
267267
uses: docker/setup-buildx-action@6a58db7e0d21ca03e6c44877909e80e45217eed2 # v2.6.0
268268
- name: Build Test-Runner Container
@@ -285,7 +285,7 @@ jobs:
285285
matrix: ${{ fromJSON(needs.setup-matrix.outputs.matrix) }}
286286
steps:
287287
- name: Checkout Repository
288-
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
288+
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
289289
- name: Run Smoke Tests
290290
id: smoke-tests
291291
uses: ./.github/actions/smoke-tests
@@ -366,7 +366,7 @@ jobs:
366366
if: ${{ github.event_name == 'push' && ! startsWith(github.ref, 'refs/heads/release-') }}
367367
steps:
368368
- name: Checkout Repository
369-
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
369+
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
370370
with:
371371
path: kic
372372

@@ -395,7 +395,7 @@ jobs:
395395
helm push ${{ steps.package.outputs.path }} oci://registry-1.docker.io/nginxcharts
396396
397397
- name: Checkout Repository
398-
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
398+
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
399399
with:
400400
repository: nginxinc/helm-charts
401401
fetch-depth: 1

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
steps:
3434
- name: Checkout repository
35-
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
35+
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
3636

3737
# Initializes the CodeQL tools for scanning.
3838
- name: Initialize CodeQL

.github/workflows/dockerhub-description.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-22.04
1818
if: ${{ github.event.repository.fork == false }}
1919
steps:
20-
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
20+
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
2121

2222
- name: Modify readme for DockerHub
2323
run: |

.github/workflows/fossa.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
if: ${{ github.event.repository.fork == false }}
2525
steps:
2626
- name: Checkout Repository
27-
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
27+
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
2828
- name: Scan
2929
uses: fossas/fossa-action@f61a4c0c263690f2ddb54b9822a719c25a7b608f # v1.3.1
3030
with:

.github/workflows/lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ubuntu-22.04
2929
steps:
3030
- name: Checkout Repository
31-
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
31+
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
3232
- name: Setup Golang Environment
3333
uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 # v4.0.1
3434
with:
@@ -43,7 +43,7 @@ jobs:
4343
runs-on: ubuntu-22.04
4444
steps:
4545
- name: Checkout Repository
46-
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
46+
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
4747
- uses: reviewdog/action-actionlint@42de1e3a0f52d5f8b8390894de87bc603844e530 # v1.37.0
4848
with:
4949
actionlint_flags: -shellcheck ""
@@ -53,6 +53,6 @@ jobs:
5353
runs-on: ubuntu-22.04
5454
steps:
5555
- name: Checkout Repository
56-
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
56+
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
5757
- name: Lint chart
5858
run: helm lint deployments/helm-chart

.github/workflows/scorecards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
steps:
2727
- name: "Checkout code"
28-
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
28+
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
2929
with:
3030
persist-credentials: false
3131

.github/workflows/sync.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- nginxinc/nginx-asg-sync
2626
steps:
2727
- name: Checkout
28-
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
28+
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
2929
- name: Sync Labels
3030
uses: micnncim/action-label-syncer@3abd5ab72fda571e69fffd97bd4e0033dd5f495c # v1.3.0
3131
with:

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
k8s_version: ${{ steps.vars.outputs.k8s_version }}
2424
steps:
2525
- name: Checkout Repository
26-
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
26+
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
2727
with:
2828
fetch-depth: 0
2929
- name: Set KIC version
@@ -32,7 +32,7 @@ jobs:
3232
tag="$(git tag --sort=-version:refname | head -n1)"
3333
echo "tag=${tag//v}" >> $GITHUB_OUTPUT
3434
- name: Checkout Repository at ${{ steps.kic.outputs.tag }}
35-
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
35+
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
3636
with:
3737
ref: refs/tags/v${{ steps.kic.outputs.tag }}
3838
- name: Set NGINX versions
@@ -82,7 +82,7 @@ jobs:
8282
needs: [check, variables]
8383
steps:
8484
- name: Checkout Repository
85-
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
85+
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
8686
with:
8787
fetch-depth: 0
8888
ref: refs/tags/v${{ needs.variables.outputs.kic-tag }}
@@ -125,7 +125,7 @@ jobs:
125125
needs-updating: ${{ needs.check.outputs.needs-updating-ubi }}
126126
steps:
127127
- name: Checkout Repository
128-
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
128+
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
129129
with:
130130
ref: refs/tags/v${{ needs.variables.outputs.kic-tag }}
131131
if: ${{ matrix.needs-updating == 'true' }}

0 commit comments

Comments
 (0)