Skip to content

Commit 915ee6f

Browse files
Update actions/checkout action to v7
1 parent 1a23301 commit 915ee6f

9 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/_chart_lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
contents: read
1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v6
14+
uses: actions/checkout@v7
1515
with:
1616
fetch-depth: 0
1717

.github/workflows/_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout repository
17-
uses: actions/checkout@v6
17+
uses: actions/checkout@v7
1818
with:
1919
fetch-depth: 2
2020

.github/workflows/pull_request-lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Check out code
13-
uses: actions/checkout@v6
13+
uses: actions/checkout@v7
1414
with:
1515
submodules: recursive
1616
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token

.github/workflows/push-chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
needs: chart-lint-test
1818
steps:
1919
- name: Checkout repository
20-
uses: actions/checkout@v6
20+
uses: actions/checkout@v7
2121
with:
2222
fetch-depth: 2
2323

.github/workflows/push-lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Check out code
13-
uses: actions/checkout@v6
13+
uses: actions/checkout@v7
1414
with:
1515
submodules: recursive
1616
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token

.github/workflows/release-binaries.yaml

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

4242
steps:
4343
- name: Checkout repository
44-
uses: actions/checkout@v6
44+
uses: actions/checkout@v7
4545
with:
4646
fetch-depth: 2
4747

.github/workflows/release-chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
needs: chart-lint-test
1515
steps:
1616
- name: Checkout code
17-
uses: actions/checkout@v6
17+
uses: actions/checkout@v7
1818
with:
1919
token: ${{ secrets.GITHUB_TOKEN }}
2020
fetch-depth: 0

.github/workflows/release-docker.yaml

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

3737
steps:
3838
- name: Checkout repository
39-
uses: actions/checkout@v6
39+
uses: actions/checkout@v7
4040
- name: Setup Docker
4141
id: docker
4242
uses: stakater/.github/.github/actions/operator/docker@main

.github/workflows/trivy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
runs-on: "ubuntu-latest"
3333
steps:
3434
- name: Checkout repository
35-
uses: actions/checkout@v6
35+
uses: actions/checkout@v7
3636
with:
3737
fetch-depth: 2
3838

0 commit comments

Comments
 (0)