Skip to content

Commit 6ca6e97

Browse files
authoredOct 26, 2023
Bump actions/checkout from 3 to 4 (#694)
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent f1b8343 commit 6ca6e97

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎.github/workflows/codeql-analysis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535

3636
steps:
3737
- name: Checkout repository
38-
uses: actions/checkout@v3
38+
uses: actions/checkout@v4
3939

4040
# Initializes the CodeQL tools for scanning.
4141
- name: Initialize CodeQL

‎.github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- uses: actions/setup-go@v4
1111
with:
1212
go-version: '1.20'
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414
- run: go mod tidy && git diff --exit-code go.mod go.sum
1515
build:
1616
runs-on: ubuntu-latest
@@ -22,6 +22,6 @@ jobs:
2222
- uses: actions/setup-go@v4
2323
with:
2424
go-version: ${{ matrix.version }}
25-
- uses: actions/checkout@v3
25+
- uses: actions/checkout@v4
2626
- run: go vet ./...
2727
- run: go run github.com/onsi/ginkgo/v2/ginkgo -r --randomize-all --randomize-suites --race --trace --fail-on-pending --keep-going --label-filter="!network"

0 commit comments

Comments
 (0)
Please sign in to comment.