File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1111
1212 steps :
1313 - name : " Checkout"
14- uses : actions/checkout@v2
14+ uses : actions/checkout@v3
1515
1616 - name : PHPArkitect
1717 uses : docker://phparkitect/arkitect-github-actions:latest
Original file line number Diff line number Diff line change 3232
3333 - name : Cache Composer packages
3434 id : composer-cache
35- uses : actions/cache@v2
35+ uses : actions/cache@v4
3636 with :
3737 path : vendor
3838 key : ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
8484 run : mv ./phparkitect.phar phparkitect-${{ github.sha }}.phar
8585
8686 - name : " Upload phar file artifact"
87- uses : actions/upload-artifact@v3
87+ uses : actions/upload-artifact@v4
8888 with :
8989 name : phar-artifact
9090 path : ./phparkitect-${{ github.sha }}.phar
@@ -107,7 +107,7 @@ jobs:
107107 GITHUB_TOKEN : ${{ secrets.TOKEN_GITHUB }}
108108
109109 - name : " Download phar ./phparkitect-${{ github.sha }}.phar"
110- uses : actions/download-artifact@v3
110+ uses : actions/download-artifact@v4
111111 with :
112112 # will download phar in project root
113113 name : phar-artifact
@@ -121,7 +121,7 @@ jobs:
121121 if : github.event_name == 'release'
122122 steps :
123123 - name : " Download phar ./phparkitect-${{ github.sha }}.phar"
124- uses : actions/download-artifact@v3
124+ uses : actions/download-artifact@v4
125125 with :
126126 # will download phar in project root
127127 name : phar-artifact
You can’t perform that action at this time.
0 commit comments