Skip to content

Commit bbf9935

Browse files
committed
Update github workflows
1 parent fc5894e commit bbf9935

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.github/workflows/android.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
tar -czvf ${{ env.RELEASE_NAME }}.tar.gz ${{ env.RELEASE_NAME }}
8383
8484
- name: Upload Artifacts
85-
uses: actions/upload-artifact@v2
85+
uses: actions/upload-artifact@v3
8686
with:
8787
name: ${{ env.RELEASE_NAME }}.tar.gz
8888
path: ./build/${{ env.RELEASE_NAME }}.tar.gz

.github/workflows/cmake.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
runs-on: ubuntu-latest
7676

7777
steps:
78-
- uses: actions/checkout@v2
78+
- uses: actions/checkout@v3
7979

8080
- name: Create Build Environment
8181
# Some projects don't allow in-source building, so create a separate build directory

.github/workflows/linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494
tar -czvf ${{ env.RELEASE_NAME }}.tar.gz ${{ env.RELEASE_NAME }}
9595
9696
- name: Upload Artifacts
97-
uses: actions/upload-artifact@v2
97+
uses: actions/upload-artifact@v3
9898
with:
9999
name: ${{ env.RELEASE_NAME }}.tar.gz
100100
path: ./build/${{ env.RELEASE_NAME }}.tar.gz

.github/workflows/macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999
tar -czvf ${{ env.RELEASE_NAME }}.tar.gz ${{ env.RELEASE_NAME }}
100100
101101
- name: Upload Artifacts
102-
uses: actions/upload-artifact@v2
102+
uses: actions/upload-artifact@v3
103103
with:
104104
name: ${{ env.RELEASE_NAME }}.tar.gz
105105
path: ./build/${{ env.RELEASE_NAME }}.tar.gz

.github/workflows/webassembly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
shell: cmd
7070

7171
- name: Upload Artifacts
72-
uses: actions/upload-artifact@v2
72+
uses: actions/upload-artifact@v3
7373
with:
7474
name: ${{ env.RELEASE_NAME }}.zip
7575
path: ./build/${{ env.RELEASE_NAME }}.zip

.github/workflows/windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ jobs:
116116
shell: cmd
117117

118118
- name: Upload Artifacts
119-
uses: actions/upload-artifact@v2
119+
uses: actions/upload-artifact@v3
120120
with:
121121
name: ${{ env.RELEASE_NAME }}.zip
122122
path: ./build/${{ env.RELEASE_NAME }}.zip

.github/workflows/windows_examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: windows-latest
2323

2424
steps:
25-
- uses: actions/checkout@v2
25+
- uses: actions/checkout@v3
2626

2727
- name: Add MSBuild to PATH
2828
uses: microsoft/setup-msbuild@v1

0 commit comments

Comments
 (0)