From d757c51698ab4d5176ff66d1333c2d3bbba6f2ec Mon Sep 17 00:00:00 2001 From: Nicolas Favre-Felix Date: Sat, 5 Oct 2024 12:55:39 -0700 Subject: [PATCH] GHA: Update checkout and upload-artifact to v4 --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 077d3af..054e3f4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -39,7 +39,7 @@ jobs: image: ${{ matrix.container }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Fetch package lists and install dependencies (Ubuntu) if: contains(matrix.os_name, 'ubuntu-') @@ -91,7 +91,7 @@ jobs: ./tests/ws-tests.py - name: Archive logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: webdis-${{ matrix.os_name }}.log path: webdis.log @@ -110,7 +110,7 @@ jobs: runs-on: ${{ matrix.runner }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install dependencies run: | @@ -135,7 +135,7 @@ jobs: ./tests/ws-tests.py - name: Archive logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: webdis-${{ matrix.os_name }}.log path: webdis.log