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
22 changes: 11 additions & 11 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@v6.0.3
- uses: actions/checkout@v7.0.0
env:
HUSKY: "0"

Expand All @@ -31,7 +31,7 @@ jobs:
terraform_version: 1.12.2

- name: Restore Yarn Cache
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: node_modules
key: yarn-modules-${{ runner.arch }}-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}-dev
Expand All @@ -48,7 +48,7 @@ jobs:
timeout-minutes: 15
name: Build Application
steps:
- uses: actions/checkout@v6.0.3
- uses: actions/checkout@v7.0.0
env:
HUSKY: "0"

Expand All @@ -59,7 +59,7 @@ jobs:
cache: "yarn"

- name: Restore Yarn Cache
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: node_modules
key: yarn-modules-${{ runner.arch }}-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}-prod
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
- build
environment: "AWS QA"
steps:
- uses: actions/checkout@v6.0.3
- uses: actions/checkout@v7.0.0
env:
HUSKY: "0"

Expand All @@ -133,7 +133,7 @@ jobs:
terraform_version: 1.12.2

- name: Restore Yarn Cache
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: node_modules
key: yarn-modules-${{ runner.arch }}-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}-dev
Expand All @@ -145,7 +145,7 @@ jobs:
with:
name: build-qa

- uses: aws-actions/configure-aws-credentials@v6.2.0
- uses: aws-actions/configure-aws-credentials@6.2.2
with:
role-to-assume: arn:aws:iam::427040638965:role/GitHubActionsRole
role-session-name: Core_QA_Deployment_${{ github.run_id }}
Expand Down Expand Up @@ -188,15 +188,15 @@ jobs:
with:
terraform_version: 1.12.2

- uses: actions/checkout@v6.0.3
- uses: actions/checkout@v7.0.0
env:
HUSKY: "0"

- name: Download Build files
uses: actions/download-artifact@v8
with:
name: build-prod
- uses: aws-actions/configure-aws-credentials@v6.2.0
- uses: aws-actions/configure-aws-credentials@6.2.2
with:
role-to-assume: arn:aws:iam::298118738376:role/GitHubActionsRole
role-session-name: Core_Prod_Deployment_${{ github.run_id }}
Expand All @@ -221,12 +221,12 @@ jobs:
- test-unit
- test-e2e
steps:
- uses: actions/checkout@v6.0.3
- uses: actions/checkout@v7.0.0
- name: Set up Node
uses: actions/setup-node@v6.4.0
with:
node-version: 24.x
- uses: actions/setup-java@v5.2.0
- uses: actions/setup-java@v5.5.0
with:
distribution: 'adopt'
java-version: '25'
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/deploy-qa.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@v6.0.3
- uses: actions/checkout@v7.0.0
env:
HUSKY: "0"

Expand All @@ -31,7 +31,7 @@ jobs:
cache: "yarn"

- name: Restore Yarn Cache
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: node_modules
key: yarn-modules-${{ runner.arch }}-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}-dev
Expand All @@ -49,7 +49,7 @@ jobs:
timeout-minutes: 15
name: Build Application
steps:
- uses: actions/checkout@v6.0.3
- uses: actions/checkout@v7.0.0
env:
HUSKY: "0"

Expand All @@ -60,7 +60,7 @@ jobs:
cache: "yarn"

- name: Restore Yarn Cache
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: node_modules
key: yarn-modules-${{ runner.arch }}-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}-dev
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
- test
- build
steps:
- uses: actions/checkout@v6.0.3
- uses: actions/checkout@v7.0.0
env:
HUSKY: "0"

Expand All @@ -115,7 +115,7 @@ jobs:
terraform_version: 1.12.2

- name: Restore Yarn Cache
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: node_modules
key: yarn-modules-${{ runner.arch }}-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}-dev
Expand All @@ -128,7 +128,7 @@ jobs:
with:
name: build

- uses: aws-actions/configure-aws-credentials@v6.2.0
- uses: aws-actions/configure-aws-credentials@6.2.2
with:
role-to-assume: arn:aws:iam::427040638965:role/GitHubActionsRole
role-session-name: Core_QA_Deployment_${{ github.run_id }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/infracost.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
api-key: ${{ secrets.INFRACOST_API_KEY }}

- name: Checkout base branch
uses: actions/checkout@v6.0.3
uses: actions/checkout@v7.0.0
with:
ref: '${{ github.event.pull_request.base.ref }}'

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

- name: Checkout PR branch
uses: actions/checkout@v6.0.3
uses: actions/checkout@v7.0.0

- name: Generate Infracost diff
run: |
Expand Down
12 changes: 6 additions & 6 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@v6.0.3
- uses: actions/checkout@v7.0.0
env:
HUSKY: "0"

Expand All @@ -33,7 +33,7 @@ jobs:
terraform_version: 1.12.2

- name: Restore Yarn Cache
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: node_modules
key: yarn-modules-${{ runner.arch }}-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}-dev
Expand All @@ -50,7 +50,7 @@ jobs:
timeout-minutes: 15
name: Build Application
steps:
- uses: actions/checkout@v6.0.3
- uses: actions/checkout@v7.0.0
env:
HUSKY: "0"

Expand All @@ -61,7 +61,7 @@ jobs:
cache: "yarn"

- name: Restore Yarn Cache
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: node_modules
key: yarn-modules-${{ runner.arch }}-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}-prod
Expand Down Expand Up @@ -111,15 +111,15 @@ jobs:
with:
terraform_version: 1.12.2

- uses: actions/checkout@v6.0.3
- uses: actions/checkout@v7.0.0
env:
HUSKY: "0"

- name: Download Build files
uses: actions/download-artifact@v8
with:
name: build-prod
- uses: aws-actions/configure-aws-credentials@v6.2.0
- uses: aws-actions/configure-aws-credentials@6.2.2
with:
role-to-assume: arn:aws:iam::298118738376:role/GitHubActionsRole
role-session-name: Manual_Core_Prod_Deployment_${{ github.run_id }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
private-key: ${{ secrets.AUTOMATED_RELEASE_APP_KEY }}

- name: Checkout code
uses: actions/checkout@v6.0.3
uses: actions/checkout@v7.0.0
with:
fetch-depth: 2
token: ${{ steps.app-token.outputs.token }}
Expand Down
Loading