Skip to content

Commit

Permalink
build(deps): bump actions/checkout from 2 to 3 (golangci#2643)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored and SeigeC committed Apr 4, 2023
1 parent 0d5db3a commit b240057
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yaml
Expand Up @@ -33,7 +33,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/post-release.yml
Expand Up @@ -10,7 +10,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GOLANGCI_LINT_TOKEN }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-extra.yml
Expand Up @@ -10,7 +10,7 @@ jobs:
name: Vulnerability scanner
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions/setup-go@v2
- name: Run go list
run: go list -json -m all > go.list
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/pr.yml
Expand Up @@ -18,7 +18,7 @@ jobs:
with:
go-version: ${{ env.GO_VERSION }}
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Check go mod
run: |
go mod tidy
Expand All @@ -29,7 +29,7 @@ jobs:
golangci-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v2
with:
Expand All @@ -46,7 +46,7 @@ jobs:
needs: golangci-lint # run after golangci-lint action to not produce duplicated errors
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v2
with:
Expand All @@ -59,7 +59,7 @@ jobs:
needs: golangci-lint # run after golangci-lint action to not produce duplicated errors
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v2
with:
Expand All @@ -76,7 +76,7 @@ jobs:
- 1.16
- 1.17
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v2
with:
Expand All @@ -97,7 +97,7 @@ jobs:
# needed for github-action-config.json generation
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Unshallow
run: git fetch --prune --unshallow
- name: Install Go
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tag.yml
Expand Up @@ -10,7 +10,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GOLANGCI_LINT_TOKEN }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v2
with:
Expand All @@ -35,7 +35,7 @@ jobs:
- Dockerfile: build/Dockerfile
- Dockerfile: build/Dockerfile.alpine
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Install Go
uses: actions/setup-go@v2
Expand Down

0 comments on commit b240057

Please sign in to comment.