From 23884d8feba397ab72fb5bb71b440f82169526d3 Mon Sep 17 00:00:00 2001 From: Orestis Floros Date: Thu, 19 Oct 2023 10:15:58 +0200 Subject: [PATCH 1/4] test --- .github/workflows/publish-cloudformation.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-cloudformation.yml b/.github/workflows/publish-cloudformation.yml index e5fe5e6eaf..28bd09a786 100644 --- a/.github/workflows/publish-cloudformation.yml +++ b/.github/workflows/publish-cloudformation.yml @@ -24,4 +24,4 @@ jobs: aws-region: us-east-2 - name: Upload to S3 if elastic-agent CloudFormation template has changed - run: scripts/publish_ft.sh + run: ./scripts/publish_ft.sh From d18eb13bd0a5aba7c5f03273676923605a3e5611 Mon Sep 17 00:00:00 2001 From: Orestis Floros Date: Thu, 19 Oct 2023 10:16:28 +0200 Subject: [PATCH 2/4] test --- .github/workflows/publish-cloudformation.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.github/workflows/publish-cloudformation.yml b/.github/workflows/publish-cloudformation.yml index 28bd09a786..d7b9dfea32 100644 --- a/.github/workflows/publish-cloudformation.yml +++ b/.github/workflows/publish-cloudformation.yml @@ -16,12 +16,5 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Configure AWS Credentials - uses: aws-actions/configure-aws-credentials@v2 - with: - aws-access-key-id: ${{ secrets.CSPM_CFT_ACCESS_KEY_ID }} - aws-secret-access-key: ${{ secrets.CSPM_CFT_SECRET_ACCESS_KEY }} - aws-region: us-east-2 - - name: Upload to S3 if elastic-agent CloudFormation template has changed run: ./scripts/publish_ft.sh From a8f374b0d34c20c0cfc9c05a5735d58e1aafc425 Mon Sep 17 00:00:00 2001 From: Orestis Floros Date: Thu, 19 Oct 2023 10:17:41 +0200 Subject: [PATCH 3/4] test --- .github/workflows/publish-cloudformation.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-cloudformation.yml b/.github/workflows/publish-cloudformation.yml index d7b9dfea32..afcf859793 100644 --- a/.github/workflows/publish-cloudformation.yml +++ b/.github/workflows/publish-cloudformation.yml @@ -17,4 +17,4 @@ jobs: - uses: actions/checkout@v4 - name: Upload to S3 if elastic-agent CloudFormation template has changed - run: ./scripts/publish_ft.sh + run: scripts/publish_cft.sh From 40d14d730f07ee3bf981017adc85d5a495e158f6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 19 Oct 2023 08:18:38 +0000 Subject: [PATCH 4/4] Bump aws-actions/configure-aws-credentials in /.github/workflows Bumps [aws-actions/configure-aws-credentials](https://github.com/aws-actions/configure-aws-credentials) from 2 to 4. - [Release notes](https://github.com/aws-actions/configure-aws-credentials/releases) - [Changelog](https://github.com/aws-actions/configure-aws-credentials/blob/main/CHANGELOG.md) - [Commits](https://github.com/aws-actions/configure-aws-credentials/compare/v2...v4) --- updated-dependencies: - dependency-name: aws-actions/configure-aws-credentials dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/cloudformation-ci.yml | 2 +- .github/workflows/cnvm-ci.yml | 2 +- .github/workflows/destroy-environment.yml | 2 +- .github/workflows/eks-ci.yml | 2 +- .github/workflows/publish-test-results.yml | 2 +- .github/workflows/test-environment.yml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/cloudformation-ci.yml b/.github/workflows/cloudformation-ci.yml index 8b1435083a..cf92a902c9 100644 --- a/.github/workflows/cloudformation-ci.yml +++ b/.github/workflows/cloudformation-ci.yml @@ -50,7 +50,7 @@ jobs: poetry install - name: Configure AWS credentials - uses: aws-actions/configure-aws-credentials@v2 + uses: aws-actions/configure-aws-credentials@v4 with: aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} diff --git a/.github/workflows/cnvm-ci.yml b/.github/workflows/cnvm-ci.yml index 3f558bb74b..b7b72b4ea5 100644 --- a/.github/workflows/cnvm-ci.yml +++ b/.github/workflows/cnvm-ci.yml @@ -30,7 +30,7 @@ jobs: poetry --version - name: Configure AWS credentials - uses: aws-actions/configure-aws-credentials@v2 + uses: aws-actions/configure-aws-credentials@v4 with: aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} diff --git a/.github/workflows/destroy-environment.yml b/.github/workflows/destroy-environment.yml index aef48274cf..0938a1b3be 100644 --- a/.github/workflows/destroy-environment.yml +++ b/.github/workflows/destroy-environment.yml @@ -49,7 +49,7 @@ jobs: echo "TF_VAR_ec_api_key=$ec_api_key" >> $GITHUB_ENV - name: Configure AWS credentials - uses: aws-actions/configure-aws-credentials@v2 + uses: aws-actions/configure-aws-credentials@v4 with: aws-access-key-id: ${{ env.AWS_ACCESS_KEY_ID }} aws-secret-access-key: ${{ env.AWS_SECRET_ACCESS_KEY }} diff --git a/.github/workflows/eks-ci.yml b/.github/workflows/eks-ci.yml index 42ce859afd..d9c5cc4d3c 100644 --- a/.github/workflows/eks-ci.yml +++ b/.github/workflows/eks-ci.yml @@ -130,7 +130,7 @@ jobs: key: ${{ runner.os }}-dockers-cache-${{ env.CONTAINER_SUFFIX }} - name: Configure AWS credentials - uses: aws-actions/configure-aws-credentials@v2 + uses: aws-actions/configure-aws-credentials@v4 with: aws-access-key-id: ${{ env.AWS_ACCESS_KEY_ID }} aws-secret-access-key: ${{ env.AWS_SECRET_ACCESS_KEY }} diff --git a/.github/workflows/publish-test-results.yml b/.github/workflows/publish-test-results.yml index 23ea74a68c..06df8c76da 100644 --- a/.github/workflows/publish-test-results.yml +++ b/.github/workflows/publish-test-results.yml @@ -72,7 +72,7 @@ jobs: ignoreMissingResults: true - name: Configure AWS credentials - uses: aws-actions/configure-aws-credentials@v2 + uses: aws-actions/configure-aws-credentials@v4 with: aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} diff --git a/.github/workflows/test-environment.yml b/.github/workflows/test-environment.yml index ba7dd16106..0479497cf1 100644 --- a/.github/workflows/test-environment.yml +++ b/.github/workflows/test-environment.yml @@ -117,7 +117,7 @@ jobs: poetry install - name: Configure AWS credentials - uses: aws-actions/configure-aws-credentials@v2 + uses: aws-actions/configure-aws-credentials@v4 with: aws-access-key-id: ${{ env.AWS_ACCESS_KEY_ID }} aws-secret-access-key: ${{ env.AWS_SECRET_ACCESS_KEY }}