Skip to content

Commit

Permalink
actions: bump actions/checkout from 2.3.3 to 2.3.4 (#11)
Browse files Browse the repository at this point in the history
* actions: bump actions/checkout from 2.3.3 to 2.3.4

Bumps [actions/checkout](https://github.com/actions/checkout) from 2.3.3 to 2.3.4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v2.3.3...v2.3.4)

Signed-off-by: dependabot[bot] <support@github.com>

* Accept all in v2

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Shivam Rathore <shivam.rathore010@gmail.com>
  • Loading branch information
dependabot[bot] and Shivam010 committed May 24, 2021
1 parent 43e8af7 commit 5af2292
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ jobs:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- name: Set up Go ${{ matrix.go_version }}
uses: actions/setup-go@v2.1.3
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go_version }}
id: go
- name: Check out code
uses: actions/checkout@v2.3.3
uses: actions/checkout@v2
- name: Go mod verify
run: go mod verify
- name: Go vet normally
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ jobs:
go_version: [1.15]
steps:
- name: Set up Go ${{ matrix.go_version }}
uses: actions/setup-go@v2.1.3
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go_version }}
id: go
- name: Check out code
uses: actions/checkout@v2.3.3
uses: actions/checkout@v2
- name: Go Test
run: |
go test -timeout 5m -race -v -covermode=atomic -coverprofile=coverage.out ./...
Expand All @@ -46,7 +46,7 @@ jobs:
name: StaticCheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.3
- uses: actions/checkout@v2
- name: check
uses: grandcolline/golang-github-actions@v1.1.0
with:
Expand All @@ -57,7 +57,7 @@ jobs:
name: Go Vet with Shadow
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.3
- uses: actions/checkout@v2
- name: check
uses: grandcolline/golang-github-actions@v1.1.0
with:
Expand Down

0 comments on commit 5af2292

Please sign in to comment.