Skip to content

Commit 9644dc9

Browse files
humblecjdef
authored andcommitted
make use of latest checkout and setup actions in the workflow
Signed-off-by: Humble Chirammal <[email protected]>
1 parent 6f0f879 commit 9644dc9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Diff for: .github/workflows/build.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ jobs:
1212
steps:
1313

1414
- name: Set up Go 1.x
15-
uses: actions/setup-go@v2
15+
uses: actions/setup-go@v3
1616
with:
17-
go-version: ^1.16
17+
go-version: ^1.19
1818
id: go
1919

2020
- name: Check out code into the Go module directory
21-
uses: actions/checkout@v2
21+
uses: actions/checkout@v3
2222

2323
- name: Build Test
2424
run: |

Diff for: .github/workflows/codespell.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
name: Check for spelling errors
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v3
1212
- uses: codespell-project/actions-codespell@master
1313
with:
1414
check_filenames: true

0 commit comments

Comments
 (0)