Skip to content

Commit 7acb579

Browse files
authored
Merge branch 'main' into chore/rearrange-workflow
2 parents b26dbbe + e9a6375 commit 7acb579

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+263
-196
lines changed

.github/workflows/build-oss.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
image_digest: ${{ steps.build-push.outputs.digest }}
2929
steps:
3030
- name: Checkout Repository
31-
uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f # v3.4.0
31+
uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0
3232
with:
3333
ref: ${{ inputs.tag != '' && format('refs/tags/v{0}', inputs.tag) || github.ref }}
3434
fetch-depth: 0
@@ -150,7 +150,7 @@ jobs:
150150
ignore-unfixed: 'true'
151151

152152
- name: Upload Trivy scan results to GitHub Security tab
153-
uses: github/codeql-action/upload-sarif@67a35a08586135a9573f4327e904ecbf517a882d # v2.2.8
153+
uses: github/codeql-action/upload-sarif@04df1262e6247151b5ac09cd2c303ac36ad3f62b # v2.2.9
154154
continue-on-error: true
155155
with:
156156
sarif_file: 'trivy-results-${{ inputs.image }}.sarif'

.github/workflows/build-plus.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
runs-on: ubuntu-22.04
3232
steps:
3333
- name: Checkout Repository
34-
uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f # v3.4.0
34+
uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0
3535
with:
3636
fetch-depth: 0
3737

@@ -155,7 +155,7 @@ jobs:
155155
ignore-unfixed: 'true'
156156

157157
- name: Upload Trivy scan results to GitHub Security tab
158-
uses: github/codeql-action/upload-sarif@67a35a08586135a9573f4327e904ecbf517a882d # v2.2.8
158+
uses: github/codeql-action/upload-sarif@04df1262e6247151b5ac09cd2c303ac36ad3f62b # v2.2.9
159159
continue-on-error: true
160160
with:
161161
sarif_file: 'trivy-results-${{ inputs.image }}.sarif'

.github/workflows/ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
k8s_latest: ${{ steps.vars.outputs.k8s_latest }}
3636
steps:
3737
- name: Checkout Repository
38-
uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f # v3.4.0
38+
uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0
3939
- name: Output Variables
4040
id: vars
4141
run: |
@@ -65,7 +65,7 @@ jobs:
6565
needs: checks
6666
steps:
6767
- name: Checkout Repository
68-
uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f # v3.4.0
68+
uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0
6969
- name: Setup Golang Environment
7070
uses: actions/setup-go@4d34df0c2316fe8122ab82dc22947d607c0c91f9 # v4.0.0
7171
with:
@@ -89,7 +89,7 @@ jobs:
8989
needs: [checks, unit-tests]
9090
steps:
9191
- name: Checkout Repository
92-
uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f # v3.4.0
92+
uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0
9393
with:
9494
fetch-depth: 0
9595

@@ -142,7 +142,7 @@ jobs:
142142
type: plus
143143
steps:
144144
- name: Checkout Repository
145-
uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f # v3.4.0
145+
uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0
146146
- name: Fetch Cached Artifacts
147147
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1
148148
with:
@@ -237,7 +237,7 @@ jobs:
237237
fi
238238
239239
- name: Checkout Repository
240-
uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f # v3.4.0
240+
uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0
241241
- name: Docker Buildx
242242
uses: docker/setup-buildx-action@4b4e9c3e2d4531116a6f8ba8e71fc6e2cb6e6c8c # v2.5.0
243243
- name: Build Test-Runner Container
@@ -260,7 +260,7 @@ jobs:
260260
matrix: ${{ fromJSON(needs.setup-matrix.outputs.matrix) }}
261261
steps:
262262
- name: Checkout Repository
263-
uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f # v3.4.0
263+
uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0
264264
- name: Run Smoke Tests
265265
id: smoke-tests
266266
uses: ./.github/actions/smoke-tests
@@ -340,7 +340,7 @@ jobs:
340340
if: ${{ github.event_name == 'push' }}
341341
steps:
342342
- name: Checkout Repository
343-
uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f # v3.4.0
343+
uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0
344344
with:
345345
path: kic
346346

@@ -369,7 +369,7 @@ jobs:
369369
helm push ${{ steps.package.outputs.path }} oci://registry-1.docker.io/nginxcharts
370370
371371
- name: Checkout Repository
372-
uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f # v3.4.0
372+
uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0
373373
with:
374374
repository: nginxinc/helm-charts
375375
fetch-depth: 1

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ jobs:
3232

3333
steps:
3434
- name: Checkout repository
35-
uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f # v3.4.0
35+
uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0
3636

3737
# Initializes the CodeQL tools for scanning.
3838
- name: Initialize CodeQL
39-
uses: github/codeql-action/init@67a35a08586135a9573f4327e904ecbf517a882d # v2.2.8
39+
uses: github/codeql-action/init@04df1262e6247151b5ac09cd2c303ac36ad3f62b # v2.2.9
4040
with:
4141
languages: ${{ matrix.language }}
4242
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -47,7 +47,7 @@ jobs:
4747
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
4848
# If this step fails, then you should remove it and run the build manually (see below)
4949
- name: Autobuild
50-
uses: github/codeql-action/autobuild@67a35a08586135a9573f4327e904ecbf517a882d # v2.2.8
50+
uses: github/codeql-action/autobuild@04df1262e6247151b5ac09cd2c303ac36ad3f62b # v2.2.9
5151

5252
# ℹ️ Command-line programs to run using the OS shell.
5353
# 📚 https://git.io/JvXDl
@@ -61,4 +61,4 @@ jobs:
6161
# make release
6262

6363
- name: Perform CodeQL Analysis
64-
uses: github/codeql-action/analyze@67a35a08586135a9573f4327e904ecbf517a882d # v2.2.8
64+
uses: github/codeql-action/analyze@04df1262e6247151b5ac09cd2c303ac36ad3f62b # v2.2.9

.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@24cb9080177205b6e8c946b17badbe402adc938f # v3.4.0
20+
- uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0
2121

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

.github/workflows/draft-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-22.04
1313
steps:
1414
- name: Checkout Repository
15-
uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f # v3.4.0
15+
uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0
1616

1717
- name: Create/Update Draft
1818
uses: lucacome/draft-release@e1aa7cbd04dbd6baa6c06add5f84e271b21e45ea # v0.1.1

.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@24cb9080177205b6e8c946b17badbe402adc938f # v3.4.0
27+
uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0
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@24cb9080177205b6e8c946b17badbe402adc938f # v3.4.0
31+
uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0
3232
- name: Setup Golang Environment
3333
uses: actions/setup-go@4d34df0c2316fe8122ab82dc22947d607c0c91f9 # v4.0.0
3434
with:
@@ -43,7 +43,7 @@ jobs:
4343
runs-on: ubuntu-22.04
4444
steps:
4545
- name: Checkout Repository
46-
uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f # v3.4.0
46+
uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0
4747
- uses: reviewdog/action-actionlint@b6feb003955cad286985c42e7047f4567a798f3f # v1.36.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@24cb9080177205b6e8c946b17badbe402adc938f # v3.4.0
56+
uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0
5757
- name: Lint chart
5858
run: helm lint deployments/helm-chart

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-22.04
1313
steps:
1414
- name: Checkout Repository
15-
uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f # v3.4.0
15+
uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0
1616

1717
- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0
1818
- run: npm install js-yaml

.github/workflows/scorecards.yml

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

2626
steps:
2727
- name: "Checkout code"
28-
uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f # v3.4.0
28+
uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0
2929
with:
3030
persist-credentials: false
3131

@@ -53,6 +53,6 @@ jobs:
5353

5454
# Upload the results to GitHub's code scanning dashboard.
5555
- name: "Upload to code-scanning"
56-
uses: github/codeql-action/upload-sarif@67a35a08586135a9573f4327e904ecbf517a882d # v2.2.8
56+
uses: github/codeql-action/upload-sarif@04df1262e6247151b5ac09cd2c303ac36ad3f62b # v2.2.9
5757
with:
5858
sarif_file: results.sarif

0 commit comments

Comments
 (0)