Skip to content

Bump actions/checkout from 2 to 3.1.0 #282

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-gomod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: actions/setup-go@v2
with:
go-version: 1.15.x
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0
with:
# use a personal access token so that the push will trigger new actions
token: ${{ secrets.PAT_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/setup-go@v2
with:
go-version: 1.15.x
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0
- name: go vet
env:
GOFLAGS: -mod=vendor
Expand All @@ -29,7 +29,7 @@ jobs:
- uses: actions/[email protected]
with:
node-version: '14'
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0
- name: eslint
run: |
cd web
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/setup-go@v2
with:
go-version: 1.15.x
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0
- name: Get npm cache directory
id: npm-cache
run: |
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
runs-on: ubuntu-latest
container: goreleaser/goreleaser:v0.128.0-cgo
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0
- name: Download web/rice-box.go
uses: actions/download-artifact@v2
with:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/preflight-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0
- name: install_prettier
run: |
npm i -g prettier
Expand All @@ -44,7 +44,7 @@ jobs:
- uses: actions/setup-go@v2
with:
go-version: 1.15.x
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0
- name: Get tag
run: echo "GITHUB_TAG=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
- name: Verify tag
Expand All @@ -62,7 +62,7 @@ jobs:
- uses: actions/[email protected]
with:
node-version: '14'
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0
- name: run_karma
run: |
cd web
Expand All @@ -85,7 +85,7 @@ jobs:
- uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0
- name: Get npm cache directory
id: npm-cache
run: |
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
runs-on: ubuntu-latest
container: goreleaser/goreleaser:v0.128.0-cgo
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0
- name: Download web/rice-box.go
uses: actions/download-artifact@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verify-generated.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
with:
go-version: 1.15.x
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3.1.0
- name: Verify generated code
run: ci/check-generated-mocks.sh
- name: Verify npm registry
Expand Down