Skip to content

Commit

Permalink
Update docker-deploy-stage.yml
Browse files Browse the repository at this point in the history
update actions versions

Signed-off-by: Duncan Ragsdale <88173870+Thistleman@users.noreply.github.com>
  • Loading branch information
Thistleman authored May 1, 2024
1 parent 7ee4dea commit a8ac422
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/docker-deploy-stage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install Node
uses: actions/setup-node@v3
Expand All @@ -17,7 +17,7 @@ jobs:

# Cache action set to cache npm installed modules when package-lock or OS changes, otherwise will restore the cache
- name: Cache node modules
uses: actions/cache@v3
uses: actions/cache@v4
env:
cache-name: cache-node-modules
with:
Expand All @@ -42,7 +42,7 @@ jobs:
mv -v build/* /tmp/workspace/build
- name: Temporarily save Build to artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: build-client
path: /tmp/workspace
Expand All @@ -53,14 +53,14 @@ jobs:
environment: staging
steps:
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.STAGE_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.STAGE_SECRET_ACCESS_KEY }}
aws-region: ${{ secrets.AWS_REGION }}

- name: Retrieve saved Build
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: build-client
path: /tmp/workspace
Expand Down

0 comments on commit a8ac422

Please sign in to comment.