[GHA] LS Eclipse and VSCode Extensions with older AWS CLI

This commit is contained in:
aboyko
2025-01-31 17:34:10 -05:00
parent e2ed8f2f00
commit a6af211100
2 changed files with 12 additions and 0 deletions

View File

@@ -40,6 +40,12 @@ jobs:
outputs:
invalid_urls: ${{ steps.compute-invalid-urls.outputs.invalid_urls }}
steps:
- name: Setup AWS CLI 2.22
run: |
curl -s "https://awscli.amazonaws.com/awscli-exe-linux-x86_64-2.22.35.zip" -o "awscliv2.zip"
unzip -q awscliv2.zip
sudo ./aws/install --update
aws --version
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
with:
sparse-checkout: |

View File

@@ -27,6 +27,12 @@ jobs:
runs-on: ubuntu-latest
name: Build VSCode Extension '${{ inputs.extension-name }}' Snapshot
steps:
- name: Setup AWS CLI 2.22
run: |
curl -s "https://awscli.amazonaws.com/awscli-exe-linux-x86_64-2.22.35.zip" -o "awscliv2.zip"
unzip -q awscliv2.zip
sudo ./aws/install --update
aws --version
- name: Checkout vscode-extensions code and workflow scripts
uses: actions/checkout@v4
- name: Set up JDK 21