Skip to content

Commit 3d477c9

Browse files
committed
workflows: update 'go-version' to 'stable'
Update the workflows that build the project to use the latest stable version of Go, rather than a fixed version that will go out-of-date. This allows the project to use new features in the language whenever possible. Signed-off-by: Victoria Dye <[email protected]>
1 parent 40dd79c commit 3d477c9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- name: Setup Go
1111
uses: actions/setup-go@v3
1212
with:
13-
go-version: '1.19.0'
13+
go-version: 'stable'
1414

1515
- uses: actions/checkout@v3
1616
with:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
- name: Setup Go
5050
uses: actions/setup-go@v3
5151
with:
52-
go-version: '1.19.0'
52+
go-version: 'stable'
5353
- uses: ruby/setup-ruby@v1
5454
with:
5555
ruby-version: '3.2.1'

0 commit comments

Comments
 (0)