Skip to content

Commit 0e15d07

Browse files
authored
Merge pull request #127 from nats-io/pdp/ghactions-update
Bump GH Action versions (Go; node12 deprecations)
2 parents bf26088 + 7e5d940 commit 0e15d07

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

.github/workflows/release.yaml

+9-3
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Checkout code
11-
uses: actions/checkout@v1
11+
uses: actions/checkout@v2
1212

1313
- name: Setup Go
1414
uses: actions/setup-go@v3
1515
with:
16-
go-version: 1.19
16+
go-version: '1.19'
1717

1818
- name: Setup QEMU
1919
uses: docker/setup-qemu-action@v2
2020

2121
- name: Setup Docker Buildx
2222
id: buildx
23-
uses: docker/setup-buildx-action@v1
23+
uses: docker/setup-buildx-action@v2
2424

2525
- name: Setup Docker Hub
2626
uses: docker/login-action@v2
@@ -35,6 +35,12 @@ jobs:
3535
echo tags="latest,${version}" >> $GITHUB_OUTPUT
3636
3737
- name: Build and Push
38+
# 2023-05-07 note: the action documents:
39+
# This repository is considered EXPERIMENTAL and under active development
40+
# until further notice. It is subject to non-backward compatible changes
41+
# or removal in any future version
42+
# thus while v3.0.1 is the latest, I'm leaving this on v2 for an owner to
43+
# investigate.
3844
uses: docker/bake-action@v2
3945
env:
4046
TAGS: "${{ steps.tags.outputs.tags }}"

.github/workflows/testing.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ jobs:
1111
steps:
1212
- name: Setup Go
1313
id: setup-go
14-
uses: actions/setup-go@v2
14+
uses: actions/setup-go@v3
1515
with:
16-
go-version: ^1.17
16+
go-version: '^1.19'
1717
- name: Checkout source
18-
uses: actions/checkout@v2
18+
uses: actions/checkout@v3
1919
- name: Build
2020
run: make build
2121
- name: Test

0 commit comments

Comments
 (0)