Skip to content
This repository was archived by the owner on Aug 4, 2025. It is now read-only.

Commit d144f51

Browse files
authored
fix: fix release workflow (#207)
1 parent cc7122f commit d144f51

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/release.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,30 +11,30 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
go:
14+
go:
1515
- '1.18'
1616
- '1.17'
1717
- '1.16'
1818
steps:
1919
- name: Checkout repo
20-
uses: actions/checkout@v2
20+
uses: actions/checkout@v3
2121
- name: Setup Go
22-
uses: actions/setup-go@v2
22+
uses: actions/setup-go@v4
2323
with:
2424
go-version: '${{ matrix.go }}'
2525
- name: Invoking go test
2626
run: go test ./...
27-
27+
2828
release:
2929
name: 'Release to GitHub'
3030
runs-on: ubuntu-latest
31-
needs:
31+
needs:
3232
- test
3333
steps:
3434
- name: Checkout repo
35-
uses: actions/checkout@v2
35+
uses: actions/checkout@v3
3636
- name: Setup Go
37-
uses: actions/setup-go@v2
37+
uses: actions/setup-go@v4
3838
with:
3939
go-version: '1.18'
4040
- name: Invoking go vet and binaries generation
@@ -44,7 +44,7 @@ jobs:
4444
GOOS=linux GOARCH=amd64 go build -o=.github/workflows/asyncapi-parser.linux.amd64 ./cmd/api-parser/main.go
4545
GOOS=windows GOARCH=amd64 go build -o=.github/workflows/asyncapi-parser.windows.amd64.exe ./cmd/api-parser/main.go
4646
- name: Setup Node.js
47-
uses: actions/setup-node@v1
47+
uses: actions/setup-node@v3
4848
with:
4949
node-version: 14
5050
- name: Add plugin for conventional commits

0 commit comments

Comments
 (0)