Skip to content

Commit b81eac2

Browse files
dependabot[bot]muir
authored andcommitted
Bump actions/checkout from 5 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Commits](actions/checkout@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 3e7c339 commit b81eac2

8 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/cloud_clear_stale_locks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
matrix: ${{ steps.set-matrix.outputs.matrix }}
3030
steps:
3131
- name: Checkout repository
32-
uses: actions/checkout@v5
32+
uses: actions/checkout@v6
3333

3434
- id: set-matrix
3535
run: |
@@ -52,7 +52,7 @@ jobs:
5252
steps:
5353
- name: Checkout repository
5454
if: github.event.inputs.hostname == '' || github.event.inputs.hostname == matrix.hostname
55-
uses: actions/checkout@v5
55+
uses: actions/checkout@v6
5656

5757
- name: Skip host not selected
5858
if: github.event.inputs.hostname != '' && github.event.inputs.hostname != matrix.hostname

.github/workflows/cloud_provider.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
matrix: ${{ steps.set-matrix.outputs.matrix }}
5656
steps:
5757
- name: Checkout repository
58-
uses: actions/checkout@v5
58+
uses: actions/checkout@v6
5959

6060
- id: set-matrix
6161
run: |
@@ -82,7 +82,7 @@ jobs:
8282

8383
steps:
8484
- name: Checkout repository
85-
uses: actions/checkout@v5
85+
uses: actions/checkout@v6
8686

8787
- name: Setup SSH key
8888
run: |

.github/workflows/codecov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
with:
1919
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
2020

21-
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493
21+
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd
2222
with:
2323
fetch-depth: 2
2424
- uses: actions/setup-go@v6

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
4747

4848
- name: Checkout repository
49-
uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493
49+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd
5050

5151
# Initializes the CodeQL tools for scanning.
5252
- name: Initialize CodeQL

.github/workflows/go.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ jobs:
2626
with:
2727
go-version: ${{ matrix.go-version }}
2828
- name: Checkout code
29-
uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493
29+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd
3030
- name: Test
3131
run: cd go && go test ./...

.github/workflows/golangci-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
with:
2222
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
2323

24-
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493
24+
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd
2525
- name: golangci-lint
2626
uses: golangci/golangci-lint-action@82606bf257cbaff209d206a39f5134f0cfbfd2ee
2727
with:

.github/workflows/java.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
timeout-minutes: 10
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v5
16+
uses: actions/checkout@v6
1717

1818
- name: Set up JDK 21
1919
uses: actions/setup-java@v5

.github/workflows/python.yml

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

1919
steps:
2020
- name: Checkout repository
21-
uses: actions/checkout@v5
21+
uses: actions/checkout@v6
2222

2323
- name: Set up Python ${{ matrix.python-version }}
2424
uses: actions/setup-python@v6

0 commit comments

Comments
 (0)