Skip to content

Commit

Permalink
Bump actions/checkout from 3 to 4 (#13)
Browse files Browse the repository at this point in the history
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] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Sep 9, 2023
1 parent 8369196 commit ae6b552
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
go-version: 1.19.x

- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Lint
uses: golangci/golangci-lint-action@v3
2 changes: 1 addition & 1 deletion .github/workflows/release-binary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
go-version: 1.19

- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: ${{ env.working-directory }}
fetch-depth: 0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
go-version: 1.19.x

- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Go test
run: go test -shuffle=on -coverprofile coverage.out -timeout 5m ./...
Expand All @@ -26,7 +26,7 @@ jobs:
go-version: 1.19.x

- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Go race test
run: go test -race -shuffle=on -timeout 5m ./...

0 comments on commit ae6b552

Please sign in to comment.