Skip to content

Commit 584465a

Browse files
authored
Update CI runner versions and action versions (#219)
- Upgrade macos-14 to macos-15 for aarch64-apple-darwin - Align ubuntu runners to ubuntu-22.04 and ubuntu-24.04-arm - Bump actions/checkout from v4 to v6 - Bump actions/upload-artifact from v4 to v7 - Bump actions/download-artifact from v4 to v8
1 parent a7b78fa commit 584465a

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/release-proxy.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ jobs:
1616
matrix:
1717
include:
1818
- target: aarch64-apple-darwin
19-
runner: macos-14
19+
runner: macos-15
2020
asset_name: java-lsp-proxy-darwin-aarch64.tar.gz
2121
- target: x86_64-apple-darwin
2222
runner: macos-15-intel
2323
asset_name: java-lsp-proxy-darwin-x86_64.tar.gz
2424
- target: x86_64-unknown-linux-gnu
25-
runner: ubuntu-latest
25+
runner: ubuntu-22.04
2626
asset_name: java-lsp-proxy-linux-x86_64.tar.gz
2727
- target: aarch64-unknown-linux-gnu
28-
runner: ubuntu-24.04-arm
28+
runner: ubuntu-22.04-arm
2929
asset_name: java-lsp-proxy-linux-aarch64.tar.gz
3030
- target: x86_64-pc-windows-msvc
3131
runner: windows-latest
@@ -36,7 +36,7 @@ jobs:
3636

3737
steps:
3838
- name: Checkout
39-
uses: actions/checkout@v4
39+
uses: actions/checkout@v6
4040

4141
- name: Install Rust toolchain
4242
uses: dtolnay/rust-toolchain@stable
@@ -62,7 +62,7 @@ jobs:
6262
Compress-Archive -Path target/${{ matrix.target }}/release/java-lsp-proxy.exe -DestinationPath ${{ matrix.asset_name }}
6363
6464
- name: Upload artifact
65-
uses: actions/upload-artifact@v4
65+
uses: actions/upload-artifact@v7
6666
with:
6767
name: ${{ matrix.asset_name }}
6868
path: ${{ matrix.asset_name }}
@@ -74,7 +74,7 @@ jobs:
7474
runs-on: ubuntu-latest
7575
steps:
7676
- name: Download all artifacts
77-
uses: actions/download-artifact@v4
77+
uses: actions/download-artifact@v8
7878
with:
7979
path: artifacts
8080
merge-multiple: true

0 commit comments

Comments
 (0)