diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2025-01-23 17:29:09 +0100 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2025-01-23 17:29:09 +0100 |
commit | ad3e98af746ac10435cd74c22a2e8bd2c51053a3 (patch) | |
tree | 4dfa982927559d20d92f05d7d3ca599805876c5f | |
parent | eeebbf74f9378e914116c1549ee3b2d4a62d5abb (diff) | |
download | VeraCrypt-ad3e98af746ac10435cd74c22a2e8bd2c51053a3.tar.gz VeraCrypt-ad3e98af746ac10435cd74c22a2e8bd2c51053a3.zip |
Fix Github action failure by moving upload-artifact to v4
-rw-r--r-- | .github/workflows/build-linux.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build-linux.yml b/.github/workflows/build-linux.yml index 87dc0b45..01a589d3 100644 --- a/.github/workflows/build-linux.yml +++ b/.github/workflows/build-linux.yml @@ -96,23 +96,23 @@ jobs: tar -xjf /tmp/wxWidgets-${{ env.WXWIDGETS_VERSION }}.tar.bz2 -C /tmp/wxWidgets-${{ env.WXWIDGETS_VERSION }} --strip-components=1 - name: Build VeraCrypt .deb packages run: | chmod +x src/Build/build_cmake_deb.sh src/Build/build_cmake_deb.sh WXSTATIC INDICATOR - name: Upload GUI .deb packages - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: veracrypt-gui-debs path: /tmp/VeraCrypt_Packaging/GUI/Packaging/veracrypt-*.* - name: Upload Console .deb packages - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: veracrypt-console-debs path: /tmp/VeraCrypt_Packaging/Console/Packaging/veracrypt-console-*.* - name: Install and test VeraCrypt GUI .deb packages run: | sudo apt install -y /tmp/VeraCrypt_Packaging/GUI/Packaging/veracrypt-*.deb veracrypt --text --test && veracrypt --text --version |