Skip to content

Commit 010bc06

Browse files
Bump actions/checkout from 2 to 3
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 152e54e commit 010bc06

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/codespell.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
name: Check for spelling errors
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v3
1212
- uses: codespell-project/actions-codespell@master
1313
with:
1414
check_filenames: true

.github/workflows/windows.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
with:
1414
go-version: ${{ matrix.go-version }}
1515
- name: Checkout code
16-
uses: actions/checkout@v2
16+
uses: actions/checkout@v3
1717
- name: Build
1818
run: |
1919
go build -v -a -o ./bin/csi-proxy.exe ./cmd/csi-proxy
@@ -41,7 +41,7 @@ jobs:
4141
with:
4242
go-version: ${{ matrix.go }}
4343
- name: Checkout code
44-
uses: actions/checkout@v2
44+
uses: actions/checkout@v3
4545
- name: Run Windows Unit Tests
4646
run: |
4747
make all
@@ -66,7 +66,7 @@ jobs:
6666
curl -LO $PB_REL/download/v3.15.8/protoc-3.15.8-linux-x86_64.zip
6767
unzip protoc-3.15.8-linux-x86_64.zip -d $HOME/.local
6868
- name: Checkout code
69-
uses: actions/checkout@v2
69+
uses: actions/checkout@v3
7070
with:
7171
fetch-depth: 1
7272
path: go/src/github.com/kubernetes-csi/csi-proxy

0 commit comments

Comments
 (0)