Browse Source

Update workflows to use latest actions/upload-artifact

pull/3798/head
Ray 1 year ago
parent
commit
dc7f81a7b0
5 changed files with 5 additions and 5 deletions
  1. +1
    -1
      .github/workflows/android.yml
  2. +1
    -1
      .github/workflows/codeql.yml
  3. +1
    -1
      .github/workflows/macos.yml
  4. +1
    -1
      .github/workflows/webassembly.yml
  5. +1
    -1
      .github/workflows/windows.yml

+ 1
- 1
.github/workflows/android.yml View File

@ -82,7 +82,7 @@ jobs:
tar -czvf ${{ env.RELEASE_NAME }}.tar.gz ${{ env.RELEASE_NAME }}
- name: Upload Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.RELEASE_NAME }}.tar.gz
path: ./build/${{ env.RELEASE_NAME }}.tar.gz

+ 1
- 1
.github/workflows/codeql.yml View File

@ -128,7 +128,7 @@ jobs:
- name: Upload CodeQL results as an artifact
if: success() || failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: codeql-results
path: ${{ steps.step1.outputs.sarif-output }}

+ 1
- 1
.github/workflows/macos.yml View File

@ -99,7 +99,7 @@ jobs:
tar -czvf ${{ env.RELEASE_NAME }}.tar.gz ${{ env.RELEASE_NAME }}
- name: Upload Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.RELEASE_NAME }}.tar.gz
path: ./build/${{ env.RELEASE_NAME }}.tar.gz

+ 1
- 1
.github/workflows/webassembly.yml View File

@ -69,7 +69,7 @@ jobs:
shell: cmd
- name: Upload Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.RELEASE_NAME }}.zip
path: ./build/${{ env.RELEASE_NAME }}.zip

+ 1
- 1
.github/workflows/windows.yml View File

@ -133,7 +133,7 @@ jobs:
shell: cmd
- name: Upload Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.RELEASE_NAME }}.zip
path: ./build/${{ env.RELEASE_NAME }}.zip

Loading…
Cancel
Save