1515 run : |
1616 apk add build-base git zip
1717
18- - uses : actions/checkout@v2
19- - run : |
20- git fetch --prune --unshallow
18+ - uses : actions/checkout@v3
2119
2220 - name : Compile project
2321 run : |
3230
3331 - name : Upload artifacts
3432 if : ${{ success() }}
35- uses : actions/upload-artifact@v2
33+ uses : actions/upload-artifact@v3
3634 with :
3735 name : ${{ steps.slug.outputs.REPOSITORY_NAME }}-${{ steps.slug.outputs.sha8 }}
3836 path : |
5250 - name : Upload PCSX2 artifacts
5351 if : ${{ success() }}
5452 continue-on-error : true
55- uses : actions/upload-artifact@v2
53+ uses : actions/upload-artifact@v3
5654 with :
5755 name : ${{ steps.slug.outputs.REPOSITORY_NAME }}-${{ steps.slug.outputs.sha8 }}-PCSX2
5856 path : |
7270 - name : Upload PS2TOOL artifacts
7371 if : ${{ success() }}
7472 continue-on-error : true
75- uses : actions/upload-artifact@v2
73+ uses : actions/upload-artifact@v3
7674 with :
7775 name : ${{ steps.slug.outputs.REPOSITORY_NAME }}-${{ steps.slug.outputs.sha8 }}-PS2TOOL
7876 path : |
@@ -92,17 +90,17 @@ jobs:
9290
9391 steps :
9492 - name : Checkout Repository
95- uses : actions/checkout@v2
93+ uses : actions/checkout@v3
9694
9795 - name : Setup msbuild
98- uses : microsoft/setup-msbuild@v1.0.2
96+ uses : microsoft/setup-msbuild@v1.1
9997
10098 - name : Build
10199 run : |
102100 cd PS2IDBMS
103101 msbuild /p:Configuration=Release
104102
105- - uses : actions/upload-artifact@v2
103+ - uses : actions/upload-artifact@v3
106104 with :
107105 name : PS2IDBMS
108106 path : PS2IDBMS/Release/PS2IDBMS.exe
@@ -113,17 +111,17 @@ jobs:
113111
114112 steps :
115113 - name : Checkout Repository
116- uses : actions/checkout@v2
114+ uses : actions/checkout@v3
117115
118116 - name : Setup msbuild
119- uses : microsoft/setup-msbuild@v1.0.2
117+ uses : microsoft/setup-msbuild@v1.1
120118
121119 - name : Build
122120 run : |
123121 cd ROMIMG
124122 msbuild /p:PlatformToolset=v142 /p:Configuration=Release
125123
126- - uses : actions/upload-artifact@v2
124+ - uses : actions/upload-artifact@v3
127125 with :
128126 name : ROMIMG
129127 path : ROMIMG/Release/ROMIMG.exe
@@ -133,7 +131,7 @@ jobs:
133131 runs-on : ubuntu-latest
134132 if : startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/master'
135133 steps :
136- - uses : actions/checkout@v2
134+ - uses : actions/checkout@v3
137135
138136 - name : Get short SHA and repository name
139137 id : slug
@@ -142,7 +140,7 @@ jobs:
142140 echo "::set-output name=REPOSITORY_NAME::$(echo "$GITHUB_REPOSITORY" | awk -F / '{print $2}' | sed -e "s/:refs//")"
143141
144142 - name : Download PS2Ident artifact
145- uses : actions/download-artifact@v2
143+ uses : actions/download-artifact@v3
146144 with :
147145 name : ${{ steps.slug.outputs.REPOSITORY_NAME }}-${{ steps.slug.outputs.sha8 }}
148146 path : PS2Ident
@@ -152,7 +150,7 @@ jobs:
152150 7z a ${{ steps.slug.outputs.REPOSITORY_NAME }}-${{ steps.slug.outputs.sha8 }}.7z PS2Ident/*
153151
154152 - name : Download PS2Ident for PS2TOOL artifact
155- uses : actions/download-artifact@v2
153+ uses : actions/download-artifact@v3
156154 with :
157155 name : ${{ steps.slug.outputs.REPOSITORY_NAME }}-${{ steps.slug.outputs.sha8 }}-PS2TOOL
158156 path : PS2Ident-PS2TOOL
@@ -162,12 +160,12 @@ jobs:
162160 7z a ${{ steps.slug.outputs.REPOSITORY_NAME }}-${{ steps.slug.outputs.sha8 }}-PS2TOOL.7z PS2Ident-PS2TOOL/*
163161
164162 - name : Download ps2idbms artifact
165- uses : actions/download-artifact@v2
163+ uses : actions/download-artifact@v3
166164 with :
167165 name : PS2IDBMS
168166
169167 - name : Download romimg artifact
170- uses : actions/download-artifact@v2
168+ uses : actions/download-artifact@v3
171169 with :
172170 name : ROMIMG
173171
0 commit comments