Skip to content

Commit

Permalink
Upgrade pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
via-justa committed Mar 15, 2022
1 parent 0db9f78 commit 2c42cb6
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/golangci-lint-action@v2
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ jobs:
steps:
-
name: Checkout
uses: actions/checkout@v2.3.4
uses: actions/checkout@v3
-
name: Unshallow
run: git fetch --prune --unshallow
-
name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.14
go-version: 1.17
-
name: Import GPG key
id: import_gpg
Expand All @@ -28,7 +28,7 @@ jobs:
PASSPHRASE: ${{ secrets.PASSPHRASE }}
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2.5.0
uses: goreleaser/goreleaser-action@v2
with:
version: latest
args: release --rm-dist
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ jobs:
steps:

- name: Set up Go
uses: actions/setup-go@v2.1.3
uses: actions/setup-go@v2
with:
go-version: '1.15'
go-version: '1.17'
id: go

- name: Check out code into the Go module directory
uses: actions/checkout@v2.3.4
uses: actions/checkout@v3

- name: Get dependencies
run: |
Expand All @@ -46,19 +46,19 @@ jobs:
matrix:
# list whatever Terraform versions here you would like to support
terraform:
- '0.12.29'
- '0.13.4'
- '0.14.0-beta2'
- 'v1.0.11'
- 'v1.1.7'

steps:

- name: Set up Go
uses: actions/setup-go@v2.1.3
uses: actions/setup-go@v2
with:
go-version: '1.15'
go-version: '1.17'
id: go

- name: Check out code into the Go module directory
uses: actions/checkout@v2.3.4
uses: actions/checkout@v3

- name: Get dependencies
run: |
Expand Down

0 comments on commit 2c42cb6

Please sign in to comment.