From 8097b3281c3847012b054071a99e48cb18741f97 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Oct 2025 02:16:18 +0000 Subject: [PATCH] Bump actions/upload-artifact from 4 to 5 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 12180a188..2b93a35db 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -57,7 +57,7 @@ jobs: - name: Make check run: opam exec -- make --jobs=2 check - name: Archive documentation - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: matrix.ocaml-compiler == '4.14.x' && matrix.additional-packages == '' with: name: doc @@ -121,14 +121,14 @@ jobs: mv build/Kappapp.tar.gz . mv build/site . - name: Archive Javascript app - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: online-ui path: | site viz - name: Archive linux electron app - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: linux path: | @@ -159,7 +159,7 @@ jobs: codesign -s - Kappapp.app zip -y -r Kappapp.app.zip Kappapp.app - name: Archive MacOS app - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: macos path: Kappapp.app.zip @@ -186,7 +186,7 @@ jobs: # Note: Windows VMs on GitHub Action do not have zip command but provide 7z 7z a -tzip KappappWin.zip KappappWin - name: Archive Windows app - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: windows path: KappappWin.zip @@ -248,13 +248,13 @@ jobs: # run: | # # export DISPLAY=:99 # needed for electron # DEBUG=pw:browser* npx playwright test --retries=2 --trace retain-on-first-failure -# - uses: actions/upload-artifact@v4 +# - uses: actions/upload-artifact@v5 # if: ${{ !cancelled() }} # with: # name: playwright-report # path: playwright-report/ # retention-days: 30 - # - uses: actions/upload-artifact@v4 + # - uses: actions/upload-artifact@v5 # if: ${{ !cancelled() }} # with: # name: xvfb_log