Skip to content

Commit a6af211

Browse files
committed
[GHA] LS Eclipse and VSCode Extensions with older AWS CLI
1 parent e2ed8f2 commit a6af211

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

.github/workflows/eclipse-ls-extensions-build.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,12 @@ jobs:
4040
outputs:
4141
invalid_urls: ${{ steps.compute-invalid-urls.outputs.invalid_urls }}
4242
steps:
43+
- name: Setup AWS CLI 2.22
44+
run: |
45+
curl -s "https://awscli.amazonaws.com/awscli-exe-linux-x86_64-2.22.35.zip" -o "awscliv2.zip"
46+
unzip -q awscliv2.zip
47+
sudo ./aws/install --update
48+
aws --version
4349
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
4450
with:
4551
sparse-checkout: |

.github/workflows/snapshot-vscode-extension.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,12 @@ jobs:
2727
runs-on: ubuntu-latest
2828
name: Build VSCode Extension '${{ inputs.extension-name }}' Snapshot
2929
steps:
30+
- name: Setup AWS CLI 2.22
31+
run: |
32+
curl -s "https://awscli.amazonaws.com/awscli-exe-linux-x86_64-2.22.35.zip" -o "awscliv2.zip"
33+
unzip -q awscliv2.zip
34+
sudo ./aws/install --update
35+
aws --version
3036
- name: Checkout vscode-extensions code and workflow scripts
3137
uses: actions/checkout@v4
3238
- name: Set up JDK 21

0 commit comments

Comments
 (0)