Skip to content

Commit 0dc0185

Browse files
authored
Merge pull request #5006 from kubernetes-sigs/dependabot/github_actions/actions/checkout-5
🌱 Bump actions/checkout from 4 to 5
2 parents 5e490bd + bc9296d commit 0dc0185

18 files changed

+22
-22
lines changed

.github/workflows/apidiff.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
if: (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository)
1717
steps:
1818
- name: Clone the code
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020
with:
2121
fetch-depth: 0
2222
- name: Setup Go

.github/workflows/codeql.yml

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

2121
steps:
2222
- name: Checkout repository
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v5
2424

2525
- name: Setup Go
2626
uses: actions/setup-go@v5

.github/workflows/external-plugin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
2020
steps:
2121
- name: Checkout repository
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v5
2323

2424
- name: Setup Go
2525
uses: actions/setup-go@v5

.github/workflows/legacy-webhook-path.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
2323
steps:
2424
- name: Clone the code
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v5
2626
- name: Setup Go
2727
uses: actions/setup-go@v5
2828
with:

.github/workflows/lint-sample.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
if: (github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository)
3030
steps:
3131
- name: Clone the code
32-
uses: actions/checkout@v4
32+
uses: actions/checkout@v5
3333
- name: Setup Go
3434
uses: actions/setup-go@v5
3535
with:

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
if: (github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository)
1717
steps:
1818
- name: Clone the code
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020
- name: Setup Go
2121
uses: actions/setup-go@v5
2222
with:
@@ -31,6 +31,6 @@ jobs:
3131
yamllint:
3232
runs-on: ubuntu-latest
3333
steps:
34-
- uses: actions/checkout@v4
34+
- uses: actions/checkout@v5
3535
- name: Run yamllint make target
3636
run: make yamllint

.github/workflows/release-version-ci.yml

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

2121
steps:
2222
- name: Checkout code
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v5
2424
with:
2525
fetch-depth: 0
2626

.github/workflows/release.yml

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

1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717
with:
1818
fetch-depth: 0
1919
- name: Fetch all tags

.github/workflows/spaces.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ jobs:
1616
if: (github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository)
1717
steps:
1818
- name: Clone the code
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020
- name: Run check
2121
run: make test-spaces

.github/workflows/test-alpha-generate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
1919
steps:
2020
- name: Checkout repository
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v5
2222

2323
- name: Setup Go
2424
uses: actions/setup-go@v5

0 commit comments

Comments
 (0)