@@ -34,11 +34,11 @@ jobs:
34
34
REGO_ARTIFACT_KEY_NAME : ${{ steps.set_outputs.outputs.REGO_ARTIFACT_KEY_NAME }}
35
35
REGO_ARTIFACT_PATH : ${{ steps.set_outputs.outputs.REGO_ARTIFACT_PATH }}
36
36
steps :
37
- - uses : actions/checkout@v2
37
+ - uses : actions/checkout@v4
38
38
name : Checkout repo content
39
39
40
40
- name : Set up Go 1.21
41
- uses : actions/setup-go@v2
41
+ uses : actions/setup-go@v4
42
42
with :
43
43
go-version : 1.21
44
44
49
49
GOPATH=$(go env GOPATH) make
50
50
51
51
- name : Setup Python 3.10.6
52
- uses : actions/setup-python@v2
52
+ uses : actions/setup-python@v5
53
53
with :
54
54
python-version : 3.10.6
55
55
81
81
echo "REGO_ARTIFACT_PATH=${{ env.REGO_ARTIFACT_PATH }}" >> $GITHUB_OUTPUT
82
82
83
83
- name : Upload artifact
84
- uses : actions/upload-artifact@v3
84
+ uses : actions/upload-artifact@v4
85
85
with :
86
86
name : ${{ env.REGO_ARTIFACT_KEY_NAME }}
87
87
path : ${{ env.REGO_ARTIFACT_PATH }}/
@@ -118,7 +118,7 @@ jobs:
118
118
name : create release and upload assets
119
119
runs-on : ubuntu-latest
120
120
steps :
121
- - uses : actions/checkout@v2
121
+ - uses : actions/checkout@v4
122
122
name : Checkout repository
123
123
124
124
- name : ' Generate Release Tag'
@@ -150,7 +150,7 @@ jobs:
150
150
force_push_tag : true
151
151
github_token : ${{ secrets.GITHUB_TOKEN }}
152
152
153
- -
uses :
actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # ratchet:actions/[email protected]
153
+ - uses : actions/download-artifact@v4
154
154
id : download-artifact
155
155
with :
156
156
name : ${{ env.REGO_ARTIFACT_KEY_NAME }}
@@ -174,10 +174,10 @@ jobs:
174
174
needs : [create-new-tag-and-release]
175
175
runs-on : ubuntu-latest
176
176
steps :
177
- -
uses :
actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # ratchet:actions/[email protected]
177
+ - uses : actions/checkout@v4
178
178
name : checkout repo content
179
179
- name : setup python
180
- uses :
actions/setup-python@57ded4d7d5e986d7296eab16560982c6dd7c923b # ratchet:actions/[email protected]
180
+ uses : actions/setup-python@v5
181
181
with :
182
182
python-version : 3.8
183
183
- name : install dependencies
0 commit comments