Skip to content

Commit

Permalink
chore: update github actions dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
christophwitzko committed May 22, 2022
1 parent 62b168b commit 791ebb3
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,11 @@ jobs:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: golangci/golangci-lint-action@v2
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: '1.18'
- uses: golangci/golangci-lint-action@v3

build:
name: Build and Run
Expand All @@ -24,10 +27,10 @@ jobs:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
steps:
- uses: actions/setup-go@v2
- uses: actions/setup-go@v3
with:
go-version: 1.18
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- run: go build ./cmd/semantic-release/
env:
CGO_ENABLED: 0
Expand All @@ -42,7 +45,7 @@ jobs:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/setup-go@v2
- uses: actions/setup-go@v3
with:
go-version: 1.18
- run: |
Expand All @@ -51,7 +54,7 @@ jobs:
- uses: actions/setup-node@v1
with:
node-version: 16.x
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- run: go build ./cmd/semantic-release/
- uses: docker/login-action@v1
with:
Expand Down

0 comments on commit 791ebb3

Please sign in to comment.