From 46b736585e62ee0350bcfec5be3935f8708b8caa Mon Sep 17 00:00:00 2001 From: Jim Bumgardner Date: Fri, 23 Feb 2024 16:18:59 -0800 Subject: [PATCH] Updated version numbers on two workflow packages. --- .github/workflows/deploy_pr_preview.yml | 2 +- .github/workflows/deploy_prod.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy_pr_preview.yml b/.github/workflows/deploy_pr_preview.yml index e11d3b1b..365e41d6 100644 --- a/.github/workflows/deploy_pr_preview.yml +++ b/.github/workflows/deploy_pr_preview.yml @@ -45,7 +45,7 @@ jobs: echo 'User-agent: *' > _site/robots.txt echo 'Disallow: /' >> _site/robots.txt - name: Configure AWS Credentials - uses: aws-actions/configure-aws-credentials@v1 + uses: aws-actions/configure-aws-credentials@master with: aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} diff --git a/.github/workflows/deploy_prod.yml b/.github/workflows/deploy_prod.yml index cf3ae2c4..245ad1e2 100644 --- a/.github/workflows/deploy_prod.yml +++ b/.github/workflows/deploy_prod.yml @@ -14,7 +14,7 @@ jobs: - uses: n1hility/cancel-previous-runs@v3 with: token: ${{ secrets.GITHUB_TOKEN }} - - uses: actions/checkout@v3.0.0 + - uses: actions/checkout@master - name: Use Node.js uses: actions/setup-node@v1 @@ -36,7 +36,7 @@ jobs: # Push built site files to S3 production bucket - name: Configure AWS Credentials - uses: aws-actions/configure-aws-credentials@v2 + uses: aws-actions/configure-aws-credentials@master with: aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}