From 9253637147f61d2867109ce2bab7a19b3d1d1533 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Feb 2024 15:36:19 +0200 Subject: [PATCH] ci: bump actions/upload-artifact from 3 to 4 (#20803) --- .github/workflows/binary_artifact.yml | 8 ++++---- .github/workflows/websockets_ci.yml | 10 +++++----- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/binary_artifact.yml b/.github/workflows/binary_artifact.yml index e514324784..f1e8eac14e 100644 --- a/.github/workflows/binary_artifact.yml +++ b/.github/workflows/binary_artifact.yml @@ -35,7 +35,7 @@ jobs: mv $ZIPNAME v/ cd v/ - name: Create artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: linux path: ${{ env.ZIPNAME }} @@ -67,7 +67,7 @@ jobs: mv $ZIPNAME v/ cd v/ - name: Create artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: macos_x86_64 path: ${{ env.ZIPNAME }} @@ -100,7 +100,7 @@ jobs: mv $ZIPNAME v/ cd v/ - name: Create artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: macos_arm64 path: ${{ env.ZIPNAME }} @@ -140,7 +140,7 @@ jobs: # https://superuser.com/a/1336434/194881 # It is needed, because `zip` is not installed by default :-| - name: Create artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: windows path: ${{ env.ZIPNAME }} diff --git a/.github/workflows/websockets_ci.yml b/.github/workflows/websockets_ci.yml index 3ba0153196..c39f7b6a4b 100644 --- a/.github/workflows/websockets_ci.yml +++ b/.github/workflows/websockets_ci.yml @@ -60,31 +60,31 @@ jobs: run: docker exec autobahn_server_wss "python" "/check_results.py" - name: Publish all reports - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: full report path: ${{github.workspace}}/reports - name: Publish report client - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: client path: ${{github.workspace}}/reports/clients/index.html - name: Publish report server - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: server path: ${{github.workspace}}/reports/servers/index.html - name: Publish all reports WSS - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: full report wss path: ${{github.workspace}}/reports_wss - name: Publish report client wss - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: client wss path: ${{github.workspace}}/reports_wss/clients/index.html