Skip to content

Commit

Permalink
other(ci): update setup-go action to v3
Browse files Browse the repository at this point in the history
  • Loading branch information
ptrus committed Mar 30, 2022
1 parent 75ac26c commit 85978e2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci-lint.yml
Expand Up @@ -34,6 +34,10 @@ jobs:
uses: actions/setup-python@v3
with:
python-version: '3.x'
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: "1.17"
- name: Install gitlint
run: |
python -m pip install gitlint
Expand All @@ -43,10 +47,6 @@ jobs:
# Always run this step so that all linting errors can be seen at once.
# Skip this step for dependabot pull requests.
if: always() && github.actor != 'dependabot[bot]'
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: '1.17.x'
- name: Lint Go
uses: golangci/golangci-lint-action@v3
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci-test.yaml
Expand Up @@ -46,10 +46,10 @@ jobs:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Go 1.17
uses: actions/setup-go@v2.2.0
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: "1.17.x"
go-version: "1.17"

- name: Install prerequisites
run: |
Expand Down

0 comments on commit 85978e2

Please sign in to comment.