diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index fe3fb8f0..6b1f9a5b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -38,7 +38,7 @@ jobs: run: ./build/build-host-win.sh shell: bash - name: Upload Host Artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: owlplug-host-win path: owlplug-host/src/main/juce/Builds/VisualStudio2019/x64/Release/Dynamic Library/owlplug-host-${{ env.version }}.dll @@ -69,7 +69,7 @@ jobs: run: ./build/build-host-osx.sh shell: bash - name: Upload Host Artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: owlplug-host-osx path: owlplug-host/src/main/juce/Builds/MacOSX/build/Release/owlplug-host-${{ env.version }}.dylib @@ -104,7 +104,7 @@ jobs: - name: Add version in binary name run: mv owlplug-host/src/main/juce/Builds/LinuxMakefile/build/libowlplug-host.so owlplug-host/src/main/juce/Builds/LinuxMakefile/build/owlplug-host-${{ env.version }}.so - name: Upload Host Artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: owlplug-host-linux path: owlplug-host/src/main/juce/Builds/LinuxMakefile/build/owlplug-host-${{ env.version }}.so @@ -150,7 +150,7 @@ jobs: - name: Build runnable Jar run: cd owlplug-client && mvn -B install spring-boot:repackage -DskipTests - name: Upload Jar Build Artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: owlplug-client-jar path: owlplug-client/target/owlplug-client-${{ env.version }}.jar @@ -176,7 +176,7 @@ jobs: - name: Package installer run: cd build && ./package-msi.cmd ${{ env.version }} - name: Upload Installer Artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: owlplug-win-installer-msi path: build/output/OwlPlug-${{ env.version }}.msi @@ -201,7 +201,7 @@ jobs: - name: Package installer run: cd build && ./package-dmg.sh ${{ env.version }} - name: Upload Installer Artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: owlplug-osx-installer-dmg path: build/output/OwlPlug-${{ env.version }}.dmg @@ -226,7 +226,7 @@ jobs: - name: Package installer run: cd build && ./package-deb.sh ${{ env.version }} - name: Upload Installer Artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: owlplug-linux-installer-deb path: build/output/OwlPlug-${{ env.version }}.deb @@ -261,7 +261,7 @@ jobs: - name: Rename OwlPlug AppImage run: mv OwlPlug-x86_64.AppImage OwlPlug-${{ env.version }}-x86_64.AppImage - name: Upload Installer Artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: owlplug-linux-appimage path: OwlPlug-${{ env.version }}-x86_64.AppImage