From b073258864c238f8e6e090571392a31579647493 Mon Sep 17 00:00:00 2001 From: David Sancho Moreno Date: Tue, 4 Feb 2025 09:17:01 +0100 Subject: [PATCH 1/2] update actions/upload-artifact to v4 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 32b61e316..498125b4e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -99,14 +99,14 @@ jobs: run: make release-static - name: Upload artifacts for ${{ matrix.os }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ matrix.os }} path: _build/default/packages/bin/bin.exe - name: Upload runtime artifacts for @davesnx/styled-ppx/runtime if: matrix.os == 'ubuntu-20.04' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: runtime-rescript path: _build/default/packages/runtime/rescript From c42d05663f00697103359dda465e996ac4415b33 Mon Sep 17 00:00:00 2001 From: David Sancho Moreno Date: Tue, 4 Feb 2025 09:44:21 +0100 Subject: [PATCH 2/2] update actions/download-artifact to v4 --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 498125b4e..f6d28dbac 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -154,25 +154,25 @@ jobs: run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT - name: Download linux artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: ubuntu-20.04 path: _release/platform-linux-x64 - name: Download macOS artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: macos-latest path: _release/platform-darwin-x64 # - name: Download windows artifacts - # uses: actions/download-artifact@v3 + # uses: actions/download-artifact@v4 # with: # name: windows-latest # path: _release/platform-windows-x64 - name: Download runtime-rescript artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: runtime-rescript path: _release/rescript