Skip to content

Commit 0ee03ca

Browse files
authored
Merge pull request #394 from lbl-srg/bumpGhActions
Bump version of GH actions
2 parents 316c9b3 + 7ad4c13 commit 0ee03ca

File tree

4 files changed

+20
-21
lines changed

4 files changed

+20
-21
lines changed

.github/workflows/client-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ jobs:
2424
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2525

2626
steps:
27-
- uses: actions/checkout@v2
27+
- uses: actions/checkout@v4
2828
- name: Use Node.js ${{ matrix.node-version }}
29-
uses: actions/setup-node@v2
29+
uses: actions/setup-node@v4
3030
with:
3131
node-version: ${{ matrix.node-version }}
3232
cache: 'npm'

.github/workflows/prod-deploy.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
branches: main
66
env:
7-
LBL_STAGE: production
7+
LBL_STAGE: production
88
DEBIAN_FRONTEND: noninteractive
99
TEMPLATES_FILE_NAME: templates.json
1010
jobs:
@@ -14,9 +14,9 @@ jobs:
1414
run:
1515
working-directory: server
1616
steps:
17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v4
1818
- name: Use Node.js ${{ matrix.node-version }}
19-
uses: actions/setup-node@v2
19+
uses: actions/setup-node@v4
2020
with:
2121
node-version: ${{ matrix.node-version }}
2222
cache: "npm"
@@ -31,7 +31,7 @@ jobs:
3131
- name: Copy templates.json out of the container
3232
run: docker cp $CONTAINER_ID:/server/scripts/templates.json $TEMPLATES_FILE_NAME
3333
- name: Upload templates.json as an artifact
34-
uses: actions/upload-artifact@v2
34+
uses: actions/upload-artifact@v4
3535
with:
3636
name: template
3737
path: ${{github.workspace}}/${{env.TEMPLATES_FILE_NAME}}
@@ -50,21 +50,21 @@ jobs:
5050
node-version: [18.x]
5151
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
5252
steps:
53-
- uses: actions/checkout@v2
53+
- uses: actions/checkout@v4
5454
- name: Use Node.js ${{ matrix.node-version }}
55-
uses: actions/setup-node@v2
55+
uses: actions/setup-node@v4
5656
with:
5757
node-version: ${{ matrix.node-version }}
5858
cache: "npm"
5959
cache-dependency-path: client/package-lock.json
6060
- name: Configure AWS CLI
61-
uses: aws-actions/configure-aws-credentials@v1
61+
uses: aws-actions/configure-aws-credentials@v4
6262
with:
6363
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
6464
aws-secret-access-key: ${{secrets.AWS_SECRET_ACCESS_KEY }}
6565
aws-region: us-east-2
6666
- name: Update template.json
67-
uses: actions/download-artifact@v2
67+
uses: actions/download-artifact@v4
6868
with:
6969
name: template
7070
path: ${{github.workspace}}/client/src/data

.github/workflows/server-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ jobs:
2626
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2727

2828
steps:
29-
- uses: actions/checkout@v2
29+
- uses: actions/checkout@v4
3030
- name: Set up Node ${{ matrix.node-version }}
31-
uses: actions/setup-node@v2
31+
uses: actions/setup-node@v4
3232
with:
3333
node-version: ${{ matrix.node-version }}
3434
cache: "npm"

.github/workflows/staging-deploy.yml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: ctrl-flow staging deployment
22

33
on:
44
push:
5-
branches: staging
5+
branches: staging
66
env:
77
LBL_STAGE: staging
88
DEBIAN_FRONTEND: noninteractive
@@ -14,9 +14,9 @@ jobs:
1414
run:
1515
working-directory: server
1616
steps:
17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v4
1818
- name: Use Node.js ${{ matrix.node-version }}
19-
uses: actions/setup-node@v2
19+
uses: actions/setup-node@v4
2020
with:
2121
node-version: ${{ matrix.node-version }}
2222
cache: "npm"
@@ -31,7 +31,7 @@ jobs:
3131
- name: Copy templates.json out of the container
3232
run: docker cp $CONTAINER_ID:/server/scripts/templates.json $TEMPLATES_FILE_NAME
3333
- name: Upload templates.json as an artifact
34-
uses: actions/upload-artifact@v2
34+
uses: actions/upload-artifact@v4
3535
with:
3636
name: template
3737
path: ${{github.workspace}}/${{env.TEMPLATES_FILE_NAME}}
@@ -50,21 +50,21 @@ jobs:
5050
node-version: [18.x]
5151
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
5252
steps:
53-
- uses: actions/checkout@v2
53+
- uses: actions/checkout@v4
5454
- name: Use Node.js ${{ matrix.node-version }}
55-
uses: actions/setup-node@v2
55+
uses: actions/setup-node@v4
5656
with:
5757
node-version: ${{ matrix.node-version }}
5858
cache: "npm"
5959
cache-dependency-path: client/package-lock.json
6060
- name: Configure AWS CLI
61-
uses: aws-actions/configure-aws-credentials@v1
61+
uses: aws-actions/configure-aws-credentials@v4
6262
with:
6363
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
6464
aws-secret-access-key: ${{secrets.AWS_SECRET_ACCESS_KEY }}
6565
aws-region: us-east-2
6666
- name: Update template.json
67-
uses: actions/download-artifact@v2
67+
uses: actions/download-artifact@v4
6868
with:
6969
name: template
7070
path: ${{github.workspace}}/client/src/data
@@ -97,4 +97,3 @@ jobs:
9797
AWS_REGION: us-east-2
9898
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
9999
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
100-

0 commit comments

Comments
 (0)