From ac9bad8c4d4f944a01d6fa97617b97ad42ff1c4a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 12 Oct 2023 16:26:48 +0000 Subject: [PATCH] Bump the dependencies group with 3 updates Bumps the dependencies group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [aws-actions/configure-aws-credentials](https://github.com/aws-actions/configure-aws-credentials) and [aws-actions/aws-cloudformation-github-deploy](https://github.com/aws-actions/aws-cloudformation-github-deploy). Updates `actions/checkout` from 3 to 4 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) Updates `aws-actions/configure-aws-credentials` from 1 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/v1...v4) Updates `aws-actions/aws-cloudformation-github-deploy` from 1.0.3 to 1.2.0 - [Release notes](https://github.com/aws-actions/aws-cloudformation-github-deploy/releases) - [Changelog](https://github.com/aws-actions/aws-cloudformation-github-deploy/blob/master/CHANGELOG.md) - [Commits](https://github.com/aws-actions/aws-cloudformation-github-deploy/compare/v1.0.3...v1.2.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: aws-actions/configure-aws-credentials dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: aws-actions/aws-cloudformation-github-deploy dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/check.yml | 2 +- .github/workflows/deploy.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index d6778a386..eca0cecaf 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install dependencies run: pip install -r requirements.txt - name: Build documentation diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 9822b6945..11cb99f02 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install dependencies run: | pip install -r requirements.txt @@ -21,7 +21,7 @@ jobs: swift setUpRedirects.swift - name: Configure AWS credentials id: cred - uses: aws-actions/configure-aws-credentials@v1 + uses: aws-actions/configure-aws-credentials@v4 with: aws-access-key-id: ${{ secrets.DOCS_DEPLOYER_AWS_ACCESS_KEY_ID }} aws-secret-access-key: ${{ secrets.DOCS_DEPLOYER_AWS_SECRET_ACCESS_KEY }} @@ -29,7 +29,7 @@ jobs: - name: Deploy to AWS Cloudformation id: clouddeploy if: steps.cred.outcome == 'success' - uses: aws-actions/aws-cloudformation-github-deploy@v1.0.3 + uses: aws-actions/aws-cloudformation-github-deploy@v1.2.0 with: name: vapor-docs-stack template: stack.yml