Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump actions/checkout from 2 to 3.1.0 #139

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
with:
go-version: 1.13.15
- name: check out code
uses: actions/checkout@v2
uses: actions/checkout@v3.1.0
- name: unit test
run: go test -covermode=atomic -coverprofile=profile.cov -v ./...
env:
Expand All @@ -47,7 +47,7 @@ jobs:
with:
go-version: 1.13.15
- name: check out code
uses: actions/checkout@v2
uses: actions/checkout@v3.1.0
- name: set up docker buildx
uses: docker/setup-buildx-action@v1
- name: cache docker layers
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
runs-on: ubuntu-20.04
if: github.actor != 'dependabot[bot]'
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0
- name: get branch name
id: vars
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: check out code
uses: actions/checkout@v2
uses: actions/checkout@v3.1.0
- name: run linter
uses: reviewdog/action-golangci-lint@v1
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/staging-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
with:
go-version: 1.13.15
- name: check out code
uses: actions/checkout@v2
uses: actions/checkout@v3.1.0
- name: set up docker buildx
uses: docker/setup-buildx-action@v1
- name: cache docker layers
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
needs: build
steps:
- name: check out code
uses: actions/checkout@v2
uses: actions/checkout@v3.1.0
- name: download deployment artifact
uses: actions/download-artifact@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testcov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
with:
go-version: 1.13.15
- name: check out code
uses: actions/checkout@v2
uses: actions/checkout@v3.1.0
- name: unit test
run: go test -covermode=atomic -coverprofile=profile.cov -v ./...
env:
Expand Down