Skip to content

Commit ad2113b

Browse files
authored
Merge branch 'main' into dependabot/npm_and_yarn/npm-dependencies-minor-121d41f777
2 parents cc9f623 + 1b2dce2 commit ad2113b

2 files changed

Lines changed: 16 additions & 15 deletions

File tree

.github/workflows/build.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- name: Checkout code
24-
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
24+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2525
with:
2626
fetch-depth: 1
2727

2828
- name: Setup Node
29-
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
29+
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
3030
with:
3131
node-version: 20.x
3232
cache: npm
@@ -44,7 +44,7 @@ jobs:
4444
run: npm run test:prod
4545

4646
- name: Upload coverage reports
47-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
47+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
4848
with:
4949
name: coverage-reports
5050
path: coverage/
@@ -53,7 +53,7 @@ jobs:
5353

5454
- name: Upload build artifacts
5555
id: artifact
56-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
56+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
5757
with:
5858
name: devtoolbox-artifacts
5959
path: dist/dev-tool-box/browser/
@@ -69,18 +69,18 @@ jobs:
6969
fail-fast: false
7070
steps:
7171
- name: Checkout code
72-
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
72+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
7373
with:
7474
fetch-depth: 1
7575

7676
- name: Download build artifacts
77-
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
77+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
7878
with:
7979
name: devtoolbox-artifacts
8080
path: dist/dev-tool-box/browser/
8181

8282
- name: Run E2E tests
83-
uses: cypress-io/github-action@a55856e0e961f64708c68ddcb38fba233d164ed8 # v6
83+
uses: cypress-io/github-action@e65cba2e7319696fc0fdc4d5a319b737aec4ba1c # v6.10.3
8484
with:
8585
start: npm run start
8686
wait-on: http://localhost:4200
@@ -89,7 +89,7 @@ jobs:
8989
spec: cypress/e2e/**/*.cy.ts
9090

9191
- name: Upload Cypress screenshots
92-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
92+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
9393
if: failure()
9494
with:
9595
name: cypress-screenshots-${{ matrix.browser }}
@@ -98,7 +98,7 @@ jobs:
9898
if-no-files-found: ignore
9999

100100
- name: Upload Cypress videos
101-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
101+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
102102
if: always()
103103
with:
104104
name: cypress-videos-${{ matrix.browser }}

.github/workflows/deploy.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ name: Deploy to AWS
22

33
on:
44
workflow_run:
5-
workflows: [CI Build]
5+
workflows:
6+
- CI Build
67
types:
78
- completed
89
branches:
@@ -21,12 +22,12 @@ jobs:
2122
runs-on: ubuntu-latest
2223
steps:
2324
- name: Checkout code
24-
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
25+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2526
with:
2627
fetch-depth: 1
2728

2829
- name: Setup Node
29-
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
30+
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
3031
with:
3132
node-version: 20.x
3233
cache: npm
@@ -38,7 +39,7 @@ jobs:
3839
run: npm run build:prod
3940

4041
- name: Upload build artifacts
41-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
42+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
4243
with:
4344
name: devtoolbox-artifacts
4445
path: dist/dev-tool-box/browser/
@@ -61,13 +62,13 @@ jobs:
6162
AWS_CLOUDFRONT_DISTRIBUTION_ID: ${{ secrets.CLOUDFRONT_DISTRIBUTION_ID }}
6263
steps:
6364
- name: Download build artifacts
64-
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
65+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
6566
with:
6667
name: devtoolbox-artifacts
6768
path: dist/dev-tool-box/browser/
6869

6970
- name: Configure AWS credentials
70-
uses: aws-actions/configure-aws-credentials@7474bc4690e29a8392af63c5b98e7449536d5c3a # v4
71+
uses: aws-actions/configure-aws-credentials@00943011d9042930efac3dcd3a170e4273319bc8 # v5.1.0
7172
with:
7273
aws-region: ${{ env.AWS_REGION }}
7374
role-to-assume: ${{ env.AWS_ROLE_ARN }}

0 commit comments

Comments
 (0)