88
99jobs :
1010 pboproject :
11- runs-on : windows-2019
11+ runs-on : windows-latest
1212 steps :
1313 - name : Install Arma 3 Tools
1414 uses : arma-actions/arma3-tools@master
1515 with :
1616 toolsUrl : ${{ secrets.ARMA3_TOOLS_URL }}
1717 - name : Install Mikero Tools
18- uses : arma-actions/mikero-tools@2021-04-10
18+ uses : arma-actions/mikero-tools@2024-10-11
1919 - name : Download game data
2020 run : |
2121 Invoke-WebRequest "$env:ARMA3_DATA_URL" -OutFile arma3.zip
2222 $files = @("arma3.zip")
2323 ForEach ($file in $files) {
24- Extract-7Zip -Path $file -DestinationPath .
24+ Expand-7ZipArchive -Path $file -DestinationPath .
2525 Remove-Item $file
2626 }
2727 env :
2828 ARMA3_DATA_URL : ${{ secrets.ARMA3_DATA_URL }}
2929 - name : Checkout CBA A3
30- uses : actions/checkout@v2
30+ uses : actions/checkout@v6
3131 with :
3232 path : x\cba
3333 persist-credentials : false
3434 - name : Checkout pull request
35- uses : actions/checkout@v2
35+ uses : actions/checkout@v6
3636 if : ${{ github.event_name == 'pull_request_target' }}
3737 with :
3838 path : pullrequest
@@ -53,13 +53,13 @@ jobs:
5353 env :
5454 PYTHONUNBUFFERED : 1
5555 - name : Archive logs
56- uses : actions/upload-artifact@v2
56+ uses : actions/upload-artifact@v6
5757 if : ${{ always() }}
5858 with :
5959 name : logs
6060 path : temp/*.log
6161 - name : Archive @cba_a3
62- uses : actions/upload-artifact@v2
62+ uses : actions/upload-artifact@v6
6363 with :
6464 name : ' @cba_a3-${{ github.sha }}'
6565 path : x\cba\release\@cba_a3
0 commit comments