Skip to content

Commit 95a6f1f

Browse files
authored
Merge pull request #6023 from kubernetes-sigs/dependabot/github_actions/actions/checkout-6
build(deps): bump actions/checkout from 5 to 6
2 parents 311dbbf + c79a356 commit 95a6f1f

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/apidiff.yml

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

.github/workflows/go.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
outputs:
1818
doc: ${{ steps.filter.outputs.doc }}
1919
steps:
20-
- uses: actions/checkout@v5
20+
- uses: actions/checkout@v6
2121
- uses: dorny/paths-filter@v3
2222
id: filter
2323
with:
@@ -32,7 +32,7 @@ jobs:
3232
runs-on: [ubuntu-latest]
3333
steps:
3434
- name: Check out code into the Go module directory
35-
uses: actions/checkout@v5
35+
uses: actions/checkout@v6
3636
with:
3737
fetch-depth: 0
3838
- name: Set up Go 1.x
@@ -52,7 +52,7 @@ jobs:
5252
runs-on: [ubuntu-latest]
5353
steps:
5454
- name: Check out code into the Go module directory
55-
uses: actions/checkout@v5
55+
uses: actions/checkout@v6
5656
with:
5757
fetch-depth: 0
5858
- name: Set up Go 1.x
@@ -72,7 +72,7 @@ jobs:
7272
runs-on: [ubuntu-latest]
7373
steps:
7474
- name: Check out code into the Go module directory
75-
uses: actions/checkout@v5
75+
uses: actions/checkout@v6
7676
- name: Set up Go 1.x
7777
uses: actions/setup-go@v6
7878
with:
@@ -90,7 +90,7 @@ jobs:
9090
runs-on: [macos-latest]
9191
steps:
9292
- name: Check out code into the Go module directory
93-
uses: actions/checkout@v5
93+
uses: actions/checkout@v6
9494
- name: Set up Go 1.x
9595
uses: actions/setup-go@v6
9696
with:
@@ -108,7 +108,7 @@ jobs:
108108
runs-on: [windows-latest]
109109
steps:
110110
- name: Check out code into the Go module directory
111-
uses: actions/checkout@v5
111+
uses: actions/checkout@v6
112112
- name: Set up Go 1.x
113113
uses: actions/setup-go@v6
114114
with:

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Check out code into the Go module directory
19-
uses: actions/checkout@v5
19+
uses: actions/checkout@v6
2020
with:
2121
fetch-depth: 0
2222
- name: Set up Go 1.x

0 commit comments

Comments
 (0)