From 39388c6b2cc617055fb74633ffd8e6c57b14ae2a Mon Sep 17 00:00:00 2001 From: Ivan Zorin Date: Tue, 3 Dec 2024 02:10:27 +0300 Subject: [PATCH 1/3] workflows/build.yml: update checkout to v4 since v3 is deprecated --- .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 b0ee057..191b8d3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -24,7 +24,7 @@ jobs: run: shell: cmd steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: 'recursive' - uses: lukka/get-cmake@latest @@ -45,7 +45,7 @@ jobs: build-macos: runs-on: macos-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: 'recursive' - uses: lukka/get-cmake@latest @@ -66,7 +66,7 @@ jobs: build-linux: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: 'recursive' - uses: lukka/get-cmake@latest @@ -99,7 +99,7 @@ jobs: - arch: riscv64 distro: ubuntu_latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: 'recursive' - uses: uraimo/run-on-arch-action@v2 From c2fc20452c5db9baa6786d6e4fd839871b9c7e20 Mon Sep 17 00:00:00 2001 From: Ivan Zorin Date: Tue, 3 Dec 2024 02:31:26 +0300 Subject: [PATCH 2/3] workflows/build.yml: update upload-artifact to v4 since v3 is deprecated --- .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 191b8d3..63893b4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -35,7 +35,7 @@ jobs: cmake .. -DBLISP_BUILD_CLI=ON -DCMAKE_BUILD_TYPE=Release cmake --build . --config Release - name: Upload results - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: blips-windows-x86_64.zip path: | @@ -56,7 +56,7 @@ jobs: cmake .. -DBLISP_BUILD_CLI=ON -DCMAKE_BUILD_TYPE=Release cmake --build . - name: Upload results - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: blips-apple-universal.zip path: | @@ -77,7 +77,7 @@ jobs: cmake .. -DBLISP_BUILD_CLI=ON -DCMAKE_BUILD_TYPE=Release cmake --build . - name: Upload results - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: blips-linux-x86_64.zip path: | @@ -149,7 +149,7 @@ jobs: echo "Produced artifact at /artifacts/${artifact_name}" - name: Upload results - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: blisp-linux-${{ matrix.arch }}.zip path: | From ebae66c392a4edea85df6515cb7f26f4ef672494 Mon Sep 17 00:00:00 2001 From: Ivan Zorin Date: Tue, 3 Dec 2024 02:32:38 +0300 Subject: [PATCH 3/3] workflows/build.yml: remove extra space in the end of the lines --- .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 63893b4..e80f92c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -82,7 +82,7 @@ jobs: name: blips-linux-x86_64.zip path: | build/tools/blisp/blisp - if-no-files-found: error + if-no-files-found: error build-linux-alternative-arch: runs-on: ubuntu-latest @@ -154,4 +154,4 @@ jobs: name: blisp-linux-${{ matrix.arch }}.zip path: | artifacts/blisp-* - if-no-files-found: error + if-no-files-found: error