diff options
| -rw-r--r-- | .github/workflows/cosmocc.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/macos.yml | 6 | ||||
| -rw-r--r-- | .github/workflows/windows.yml | 6 | ||||
| -rw-r--r-- | .github/workflows/windows_luajit.yml | 6 |
4 files changed, 10 insertions, 10 deletions
diff --git a/.github/workflows/cosmocc.yml b/.github/workflows/cosmocc.yml index 6a2bb9b4b..3c7ed2f9e 100644 --- a/.github/workflows/cosmocc.yml +++ b/.github/workflows/cosmocc.yml @@ -47,7 +47,7 @@ jobs: core/build/xmake --version core/build/xmake lua -v -D tests/run.lua - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: name: xmake path: core/build/xmake diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index b2abd0f88..6eefc3a16 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -49,15 +49,15 @@ jobs: cd core xmake pack -y --autobuild=n --basename=xmake -o ../artifacts xmakesrc cd .. - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: name: xmake-latest.gz.run path: artifacts/xmake.gz.run - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: name: xmake-latest.tar.gz path: artifacts/xmake.tar.gz - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: name: xmake-latest.zip path: artifacts/xmake.zip diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 00dc6c4c9..b6f920a16 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -83,15 +83,15 @@ jobs: xmake lua -v -D tests/run.lua # upload artifacts - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: name: xmake-latest.${{env.RELEASE_NAME}}.exe path: artifacts/${{env.RELEASE_NAME}}/xmake.exe - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: name: xmake-latest.${{ env.RELEASE_NAME }}.zip path: artifacts/${{env.RELEASE_NAME}}/xmake.zip - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: name: xmake-latest.${{ env.RELEASE_NAME }}.sha256 path: artifacts/${{env.RELEASE_NAME}}/shafile diff --git a/.github/workflows/windows_luajit.yml b/.github/workflows/windows_luajit.yml index 86715fea9..7da708a56 100644 --- a/.github/workflows/windows_luajit.yml +++ b/.github/workflows/windows_luajit.yml @@ -71,15 +71,15 @@ jobs: xmake lua -v -D tests/run.lua # upload artifacts - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: name: xmake-latest.${{env.RELEASE_NAME}}.exe path: artifacts/${{env.RELEASE_NAME}}/xmake.exe - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: name: xmake-latest.${{ env.RELEASE_NAME }}.zip path: artifacts/${{env.RELEASE_NAME}}/xmake.zip - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: name: xmake-latest.${{ env.RELEASE_NAME }}.sha256 path: artifacts/${{env.RELEASE_NAME}}/shafile |
