diff options
author | Rob Mensching <rob@firegiant.com> | 2024-12-26 10:46:49 -0800 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2024-12-26 11:32:14 -0800 |
commit | 1f11d0b34d1aea5d27a4e32adcc275f39287d8b6 (patch) | |
tree | 4ac61727939bc45659e6c5aa65921eb3bde3bdef /.github | |
parent | 47b717cf007bab2ae39012015951c1ec9c493098 (diff) | |
download | wix-1f11d0b34d1aea5d27a4e32adcc275f39287d8b6.tar.gz wix-1f11d0b34d1aea5d27a4e32adcc275f39287d8b6.tar.bz2 wix-1f11d0b34d1aea5d27a4e32adcc275f39287d8b6.zip |
Update to non-deprecated actions/upload-artifact
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 456d853b..247a0442 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml | |||
@@ -77,7 +77,7 @@ jobs: | |||
77 | run: 7z a build\testresults.zip @src\testresultfilelist.txt | 77 | run: 7z a build\testresults.zip @src\testresultfilelist.txt |
78 | 78 | ||
79 | - name: Save build | 79 | - name: Save build |
80 | uses: actions/upload-artifact@v3 | 80 | uses: actions/upload-artifact@v4 |
81 | with: | 81 | with: |
82 | name: artifacts | 82 | name: artifacts |
83 | path: build/artifacts/ | 83 | path: build/artifacts/ |
@@ -100,7 +100,7 @@ jobs: | |||
100 | # Do NOT publish logs on `master` branch as they may contain secrets in them. | 100 | # Do NOT publish logs on `master` branch as they may contain secrets in them. |
101 | - name: Save logs | 101 | - name: Save logs |
102 | if: github.ref != 'refs/heads/master' && always() | 102 | if: github.ref != 'refs/heads/master' && always() |
103 | uses: actions/upload-artifact@v3 | 103 | uses: actions/upload-artifact@v4 |
104 | with: | 104 | with: |
105 | name: logs_${{ github.run_id }} | 105 | name: logs_${{ github.run_id }} |
106 | path: build/logs/ | 106 | path: build/logs/ |