From 42e2326148ef64476d6ed48c8da6c9fb2e3d1958 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Besson?= Date: Thu, 12 Sep 2024 12:04:01 +0100 Subject: [PATCH 1/2] Bump download-artifact and upload-artifact actions to version 4 --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f79d18e4e..f9cd6f085 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,7 +19,7 @@ jobs: - name: Create website archive run: tar -zcvf ${{ github.event.repository.name }}.tar.gz -C _site ./ - name: Upload website archive as artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ github.event.repository.name }}.tar.gz path: ${{ github.event.repository.name }}.tar.gz @@ -29,7 +29,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Download website archive - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: ${{ github.event.repository.name }}.tar.gz - name: Create checksum From 9b3c9c31663d537feafa6e72de21fe44b38ea9ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Besson?= Date: Thu, 12 Sep 2024 12:04:41 +0100 Subject: [PATCH 2/2] Bump actions/checkout to v4 --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f9cd6f085..21d1eb216 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,7 +9,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: true - name: Build static website