16
16
container : alpine:3.18
17
17
steps :
18
18
- name : Clone Repository
19
- uses : actions/checkout@v3
19
+ uses : actions/checkout@v4
20
20
with :
21
21
persist-credentials : false
22
22
@@ -32,12 +32,12 @@ jobs:
32
32
- name : Extract Version
33
33
id : version
34
34
if : startsWith(github.ref, 'refs/tags/v')
35
- run : echo ::set-output name= VERSION:: ${GITHUB_REF#refs/tags/v}
35
+ run : echo " VERSION= ${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT
36
36
37
37
- name : Create Release
38
38
id : create_release
39
39
if : startsWith(github.ref, 'refs/tags/v')
40
- uses : softprops/action-gh-release@v1
40
+ uses : softprops/action-gh-release@v2
41
41
with :
42
42
name : Resources ${{ steps.version.outputs.VERSION }}
43
43
draft : true
66
66
needs : [get_ovmf_uefi_file]
67
67
steps :
68
68
- name : Clone Repository
69
- uses : actions/checkout@v3
69
+ uses : actions/checkout@v4
70
70
with :
71
71
persist-credentials : false
72
72
@@ -83,12 +83,12 @@ jobs:
83
83
- name : Extract Version
84
84
id : version
85
85
if : startsWith(github.ref, 'refs/tags/v')
86
- run : echo ::set-output name= VERSION:: ${GITHUB_REF#refs/tags/v}
86
+ run : echo " VERSION= ${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT
87
87
88
88
- name : Create Release
89
89
id : create_release
90
90
if : startsWith(github.ref, 'refs/tags/v')
91
- uses : softprops/action-gh-release@v1
91
+ uses : softprops/action-gh-release@v2
92
92
with :
93
93
name : Resources ${{ steps.version.outputs.VERSION }}
94
94
draft : true
0 commit comments