diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 022821f8..80082b2b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml | |||
@@ -26,7 +26,7 @@ jobs: | |||
26 | runs-on: windows-2022 | 26 | runs-on: windows-2022 |
27 | steps: | 27 | steps: |
28 | - name: Checkout code | 28 | - name: Checkout code |
29 | uses: actions/checkout@v2 | 29 | uses: actions/checkout@v3 |
30 | with: | 30 | with: |
31 | fetch-depth: 0 | 31 | fetch-depth: 0 |
32 | 32 | ||
@@ -59,7 +59,7 @@ jobs: | |||
59 | run: 7z a build\testresults.zip @src\testresultfilelist.txt | 59 | run: 7z a build\testresults.zip @src\testresultfilelist.txt |
60 | 60 | ||
61 | - name: Save build | 61 | - name: Save build |
62 | uses: actions/upload-artifact@v2 | 62 | uses: actions/upload-artifact@v3 |
63 | with: | 63 | with: |
64 | name: artifacts | 64 | name: artifacts |
65 | path: build/artifacts/ | 65 | path: build/artifacts/ |
@@ -82,7 +82,7 @@ jobs: | |||
82 | # Do NOT publish logs on `master` branch as they may contain secrets in them. | 82 | # Do NOT publish logs on `master` branch as they may contain secrets in them. |
83 | - name: Save logs | 83 | - name: Save logs |
84 | if: github.ref != 'refs/heads/master' && (success() || failure()) | 84 | if: github.ref != 'refs/heads/master' && (success() || failure()) |
85 | uses: actions/upload-artifact@v2 | 85 | uses: actions/upload-artifact@v3 |
86 | with: | 86 | with: |
87 | name: logs_${{ github.run_id }} | 87 | name: logs_${{ github.run_id }} |
88 | path: build/logs/ | 88 | path: build/logs/ |