Skip to content

Commit 094e55d

Browse files
committed
fix: ci/cd pipelines to support golang 1.19 and new checkout
1 parent 5631860 commit 094e55d

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/gosec.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
workflow_dispatch:
1313

1414
env:
15-
GO_VERSION: 1.18
15+
GO_VERSION: 1.19
1616

1717
jobs:
1818
tests:
@@ -27,7 +27,7 @@ jobs:
2727
go-version: ${{ env.GO_VERSION }}
2828

2929
- name: Check out code
30-
uses: actions/checkout@v2
30+
uses: actions/checkout@v3
3131

3232
- name: Show project files after make
3333
run: tree .

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
workflow_dispatch:
1313

1414
env:
15-
GO_VERSION: 1.18
15+
GO_VERSION: 1.19
1616

1717
permissions:
1818
security-events: write
@@ -32,7 +32,7 @@ jobs:
3232
go-version: ${{ env.GO_VERSION }}
3333

3434
- name: Check out code
35-
uses: actions/checkout@v2
35+
uses: actions/checkout@v3
3636

3737
- name: Show project files before make
3838
run: tree .

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
- v[0-9].[0-9]+.[0-9]*
99

1010
env:
11-
GO_VERSION: 1.18
11+
GO_VERSION: 1.19
1212

1313
permissions:
1414
id-token: write
@@ -29,7 +29,7 @@ jobs:
2929
id: go
3030

3131
- name: Check out code
32-
uses: actions/checkout@v2
32+
uses: actions/checkout@v3
3333

3434
- name: Test
3535
run: make test
@@ -46,7 +46,7 @@ jobs:
4646
id: go
4747

4848
- name: Check out code
49-
uses: actions/checkout@v2
49+
uses: actions/checkout@v3
5050

5151
- name: Show workspace files
5252
run: tree .

0 commit comments

Comments
 (0)