Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/deploy-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
timeout-minutes: 15
name: Run Unit Tests
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
env:
HUSKY: "0"

Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
timeout-minutes: 15
name: Build Application
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
env:
HUSKY: "0"

Expand Down Expand Up @@ -113,12 +113,12 @@ jobs:
with:
terraform_version: 1.12.2

- uses: actions/checkout@v4
- uses: actions/checkout@v5
env:
HUSKY: "0"

- name: Download Build files
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: build-prod
- uses: aws-actions/configure-aws-credentials@v4
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/deploy-qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
timeout-minutes: 15
name: Run Unit Tests
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
env:
HUSKY: "0"

Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
timeout-minutes: 15
name: Build Application
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
env:
HUSKY: "0"

Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
- test
- build
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
env:
HUSKY: "0"

Expand All @@ -126,7 +126,7 @@ jobs:
yarn-modules-${{ runner.arch }}-${{ runner.os }}-

- name: Download Build files
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: build

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/infracost.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
api-key: ${{ secrets.INFRACOST_API_KEY }}

- name: Checkout base branch
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: '${{ github.event.pull_request.base.ref }}'

Expand All @@ -35,7 +35,7 @@ jobs:
--out-file=/tmp/infracost-base.json

- name: Checkout PR branch
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Generate Infracost diff
run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/manual-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
timeout-minutes: 15
name: Run Unit Tests
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
env:
HUSKY: "0"

Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
timeout-minutes: 15
name: Build Application
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
env:
HUSKY: "0"

Expand Down Expand Up @@ -111,12 +111,12 @@ jobs:
with:
terraform_version: 1.12.2

- uses: actions/checkout@v4
- uses: actions/checkout@v5
env:
HUSKY: "0"

- name: Download Build files
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: build-prod
- uses: aws-actions/configure-aws-credentials@v4
Expand Down
Loading