Skip to content

Commit 78d3faa

Browse files
Bump actions/checkout from 5.0.0 to 6.0.1
Bumps [actions/checkout](https://github.com/actions/checkout) from 5.0.0 to 6.0.1. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@08c6903...8e8c483) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.1 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 9b2e2bd commit 78d3faa

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

.github/workflows/auto-labeler.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
outputs:
1919
policy_working_dirs: ${{ steps.policy-matrix.outputs.policy_working_dirs }}
2020
steps:
21-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
21+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
2222
with:
2323
fetch-depth: 0 # checkout all history to do git diff
2424
- name: 'Policy Matrix'

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
outputs:
1616
policy_working_dirs: ${{ steps.policy-matrix.outputs.policy_working_dirs }}
1717
steps:
18-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
18+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
1919
with:
2020
fetch-depth: 0 # checkout all history to do git diff
2121
- name: 'Policy Matrix'

.github/workflows/release-tag.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
outputs:
1818
policy_working_dirs: ${{ steps.calculate-policy-working-dirs.outputs.policy_working_dirs }}
1919
steps:
20-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
20+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
2121
with:
2222
fetch-depth: 0 # checkout all history to do git diff
2323
- name: 'Calculate which policies need a CI job'
@@ -56,7 +56,7 @@ jobs:
5656
policy-working-dir: ${{ fromJSON(needs.calculate-policy-matrix.outputs.policy_working_dirs) }}
5757
steps:
5858
- name: Checkout repository
59-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
59+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
6060
with:
6161
fetch-depth: 0 # also checkout tags
6262

.github/workflows/release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
policy-id: ${{ steps.policy-info.outputs.policy-id }}
1616
policy-name: ${{ steps.policy-info.outputs.policy-basename }}
1717
steps:
18-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
18+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
1919
- name: Calculate Policy
2020
id: calculate-policy
2121
shell: bash
@@ -41,7 +41,7 @@ jobs:
4141
needs: [calculate-policy-from-tag]
4242
steps:
4343
- name: Checkout code
44-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
44+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
4545

4646
- name: Check that `io.kubewarden.policy.version` annotation is up-to-date
4747
shell: bash
@@ -65,7 +65,7 @@ jobs:
6565
id-token: write
6666
steps:
6767
- name: Checkout code
68-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
68+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
6969

7070
- name: Install dependencies
7171
uses: ./.github/actions/install-dependencies

.github/workflows/reusable-auto-labeler.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
auto-labeler:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
13+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
1414
- name: Get policy metadata
1515
id: policy-info
1616
uses: ./.github/actions/get-policy-metadata

.github/workflows/reusable-ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
with:
1919
version: "latest"
2020
install-only: true
21-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
21+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
2222
- name: Install dependencies
2323
uses: ./.github/actions/install-dependencies
2424
- name: Policy linter
@@ -35,7 +35,7 @@ jobs:
3535
with:
3636
version: "latest"
3737
install-only: true
38-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
38+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
3939
- name: Install dependencies
4040
uses: ./.github/actions/install-dependencies
4141
- name: Build policy
@@ -52,7 +52,7 @@ jobs:
5252
with:
5353
version: "latest"
5454
install-only: true
55-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
55+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
5656
- name: Install dependencies
5757
uses: ./.github/actions/install-dependencies
5858
- name: Policy unit tests
@@ -69,7 +69,7 @@ jobs:
6969
with:
7070
version: "latest"
7171
install-only: true
72-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
72+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
7373
- name: Install dependencies
7474
uses: ./.github/actions/install-dependencies
7575
- name: Policy integration test

0 commit comments

Comments
 (0)