From 9eedd2e4e99b3c0fc5ea7e00dcffe3a847ece043 Mon Sep 17 00:00:00 2001 From: Riccardo Strina Date: Thu, 26 Mar 2026 12:09:32 +0100 Subject: [PATCH] Update CI runner versions and action versions - Upgrade macos-14 to macos-15 for aarch64-apple-darwin - Change ubuntu-latest to ubuntu-22.04 for x86_64-unknown-linux-gnu - Downgrade ubuntu-24.04-arm to ubuntu-22.04-arm for aarch64-unknown-linux-gnu - Bump actions/checkout from v4 to v6 - Bump actions/upload-artifact from v4 to v7 - Bump actions/download-artifact from v4 to v8 --- .github/workflows/release-proxy.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release-proxy.yml b/.github/workflows/release-proxy.yml index ca0dc84..fdf9dc6 100644 --- a/.github/workflows/release-proxy.yml +++ b/.github/workflows/release-proxy.yml @@ -16,16 +16,16 @@ jobs: matrix: include: - target: aarch64-apple-darwin - runner: macos-14 + runner: macos-15 asset_name: java-lsp-proxy-darwin-aarch64.tar.gz - target: x86_64-apple-darwin runner: macos-15-intel asset_name: java-lsp-proxy-darwin-x86_64.tar.gz - target: x86_64-unknown-linux-gnu - runner: ubuntu-latest + runner: ubuntu-22.04 asset_name: java-lsp-proxy-linux-x86_64.tar.gz - target: aarch64-unknown-linux-gnu - runner: ubuntu-24.04-arm + runner: ubuntu-22.04-arm asset_name: java-lsp-proxy-linux-aarch64.tar.gz - target: x86_64-pc-windows-msvc runner: windows-latest @@ -36,7 +36,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install Rust toolchain uses: dtolnay/rust-toolchain@stable @@ -62,7 +62,7 @@ jobs: Compress-Archive -Path target/${{ matrix.target }}/release/java-lsp-proxy.exe -DestinationPath ${{ matrix.asset_name }} - name: Upload artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: ${{ matrix.asset_name }} path: ${{ matrix.asset_name }} @@ -74,7 +74,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Download all artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v8 with: path: artifacts merge-multiple: true