Skip to content

Commit 9f09802

Browse files
authored
CI: bump workflow version, fix Node 12 deprecation warning in Action runs (#77)
* build: bump workflow version * release: bump workflow version
1 parent 97023b3 commit 9f09802

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: Build
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v2
15-
- uses: actions/setup-go@v2
14+
- uses: actions/checkout@v3
15+
- uses: actions/setup-go@v4
1616
- name: Build
1717
run: make build

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ jobs:
1010
env:
1111
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1212
steps:
13-
- uses: actions/checkout@v2
14-
- uses: actions/setup-go@v3
13+
- uses: actions/checkout@v3
14+
- uses: actions/setup-go@v4
1515
- id: get_version
1616
run: echo ::set-output name=VERSION::$(echo $GITHUB_REF | cut -d / -f 3)
1717
- name: Install dependencies

0 commit comments

Comments
 (0)