From fad19579add3a9359a87cbb84b332b96f2be4299 Mon Sep 17 00:00:00 2001 From: Ben McClelland Date: Mon, 20 Jan 2025 13:56:10 -0800 Subject: [PATCH] chore: tie functional tests to aws cli version linux-x86_64-2.22.35 There was a breaking change in latest awscli. This will tie the tests to the known working version until we can get a more permanenet fix for aws cli in place. --- .github/workflows/docker-bats.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docker-bats.yml b/.github/workflows/docker-bats.yml index 526510a..b6eee52 100644 --- a/.github/workflows/docker-bats.yml +++ b/.github/workflows/docker-bats.yml @@ -16,7 +16,7 @@ jobs: cp tests/.secrets.default tests/.secrets docker build \ --build-arg="GO_LIBRARY=go1.23.1.linux-amd64.tar.gz" \ - --build-arg="AWS_CLI=awscli-exe-linux-x86_64.zip" \ + --build-arg="AWS_CLI=awscli-exe-linux-x86_64-2.22.35.zip" \ --build-arg="MC_FOLDER=linux-amd64" \ --progress=plain \ -f tests/Dockerfile_test_bats \