Skip to content

Commit 587d168

Browse files
committed
.github/workflows/*.yml: update action versions; add auto-release
1 parent f6c5ab1 commit 587d168

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

.github/workflows/ci.yml

+9-3
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,23 @@ jobs:
1717
go: [ '1.21.x', '1.20.x', '1.19.x' ]
1818
steps:
1919
- name: Install Go ${{ matrix.go }}
20-
uses: actions/setup-go@v2
20+
uses: actions/setup-go@v4
2121
with:
2222
go-version: ${{ matrix.go }}
2323
- name: Checkout
24-
uses: actions/checkout@v2
24+
uses: actions/checkout@v4
2525
- name: Cache Modules
26-
uses: actions/cache@v2
26+
uses: actions/cache@v4
2727
with:
2828
path: ~/go/pkg/mod
2929
key: ${{ runner.os }}-go-v1-${{ hashFiles('**/go.sum') }}
3030
restore-keys: |
3131
${{ runner.os }}-go-
3232
- name: Run tests
3333
run: go test -v ./...
34+
35+
release:
36+
needs: test
37+
if: github.ref == 'refs/heads/master'
38+
uses: upfluence/actions/.github/workflows/lib-any-release.yml@master
39+
secrets: inherit

.github/workflows/lint.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ jobs:
88
timeout-minutes: 30
99
steps:
1010
- name: Install Go
11-
uses: actions/setup-go@v2
11+
uses: actions/setup-go@v4
1212
with:
13-
go-version: 1.16.x
13+
go-version: 1.21.x
1414
- name: Check out code
15-
uses: actions/checkout@v1
15+
uses: actions/checkout@v4
1616
- name: golanci-lint
1717
uses: upfluence/action-golangci-lint@master
1818
with:

0 commit comments

Comments
 (0)