@@ -23,23 +23,23 @@ jobs:
23
23
steps :
24
24
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
25
25
- name : Checkout ${{ github.event.pull_request.head.ref }}
26
- uses : actions/checkout@v2.2 .0
26
+ uses : actions/checkout@v2.5 .0
27
27
if : ${{ github.event.pull_request }}
28
28
with :
29
29
repository : ${{ github.repository }}
30
30
ref : ${{ github.event.pull_request.head.sha }}
31
31
submodules : false
32
32
33
33
- name : Checkout ${{ github.event.ref }}
34
- uses : actions/checkout@v2.2 .0
34
+ uses : actions/checkout@v2.5 .0
35
35
if : ${{ !github.event.pull_request }}
36
36
with :
37
37
repository : ${{ github.repository }}
38
38
ref : ${{ github.event.ref }}
39
39
submodules : false
40
40
41
41
- name : Cache packages
42
- uses : actions/cache@v1 .0.3
42
+ uses : actions/cache@v3 .0.11
43
43
id : cache-pkgs
44
44
with :
45
45
path : " packages"
65
65
run : cd ${{ runner.workspace }}/MINI404 && make -j3
66
66
67
67
- name : Checkout Wiki
68
- uses : actions/checkout@v2.2 .0
68
+ uses : actions/checkout@v2.5 .0
69
69
if : ${{ !github.event.pull_request }}
70
70
with :
71
71
repository : vintagepc/MINI404.wiki.git
92
92
tar -jhcvf Mini404-dev-linux.tar.bz2 Mini404-dev-linux
93
93
- name : Upload artifact
94
94
if : ${{ !github.event.pull_request }}
95
- uses : actions/upload-artifact@v2
95
+ uses : actions/upload-artifact@v3.1.1
96
96
with :
97
97
name : Binaries
98
98
path : ${{ runner.workspace }}/MINI404/build/Mini404-dev-linux.tar.bz2
@@ -105,15 +105,15 @@ jobs:
105
105
steps :
106
106
# # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
107
107
- name : Checkout ${{ github.event.pull_request.head.ref }}
108
- uses : actions/checkout@v2.2 .0
108
+ uses : actions/checkout@v2.5 .0
109
109
if : ${{ github.event.pull_request }}
110
110
with :
111
111
repository : ${{ github.repository }}
112
112
ref : ${{ github.event.pull_request.head.sha }}
113
113
submodules : true
114
114
115
115
- name : Checkout ${{ github.event.ref }}
116
- uses : actions/checkout@v2.2 .0
116
+ uses : actions/checkout@v2.5 .0
117
117
if : ${{ !github.event.pull_request }}
118
118
with :
119
119
repository : ${{ github.repository }}
@@ -140,14 +140,14 @@ jobs:
140
140
141
141
- name : Upload artifact
142
142
if : ${{ !github.event.pull_request }}
143
- uses : actions/upload-artifact@v2
143
+ uses : actions/upload-artifact@v3.1.1
144
144
with :
145
145
name : Binaries
146
146
path : ${{ runner.workspace }}/MINI404/build/Mini404-dev-macos.tar.bz2
147
147
148
148
build_msys :
149
149
# The type of runner that the job will run on
150
- runs-on : windows-latest
150
+ runs-on : windows-2019
151
151
if : " !contains(github.event.head_commit.message, 'NO_BUILD')"
152
152
steps :
153
153
- name : Install MSYS2
@@ -160,15 +160,15 @@ jobs:
160
160
run : git config --global core.autocrlf false
161
161
162
162
- name : Checkout ${{ github.event.pull_request.head.ref }}
163
- uses : actions/checkout@v2.2 .0
163
+ uses : actions/checkout@v2.5 .0
164
164
if : ${{ github.event.pull_request }}
165
165
with :
166
166
repository : ${{ github.repository }}
167
167
ref : ${{ github.event.pull_request.head.sha }}
168
168
submodules : false
169
169
170
170
- name : Checkout ${{ github.event.ref }}
171
- uses : actions/checkout@v2.2 .0
171
+ uses : actions/checkout@v2.5 .0
172
172
if : ${{ !github.event.pull_request }}
173
173
with :
174
174
repository : ${{ github.repository }}
@@ -206,7 +206,7 @@ jobs:
206
206
207
207
- name : Upload Cygwin artifact
208
208
if : ${{ !github.event.pull_request }}
209
- uses : actions/upload-artifact@v2
209
+ uses : actions/upload-artifact@v3.1.1
210
210
with :
211
211
name : Binaries
212
212
path : ${{ runner.workspace }}/MINI404/build/Mini404-dev-w64.zip
@@ -217,7 +217,7 @@ jobs:
217
217
needs : [build_linux, build_msys, build_macos]
218
218
steps :
219
219
- name : Retrieve platform binaries
220
- uses : actions/download-artifact@v2
220
+ uses : actions/download-artifact@v3.0.1
221
221
with :
222
222
name : Binaries
223
223
0 commit comments