Skip to content

Commit b83624e

Browse files
committed
fix: Update GH Actions workflow to use latest versions
Updated GitHub Actions to latest stable versions. Resolves: #368 Signed-off-by: Aswin A <[email protected]>
1 parent 5348fee commit b83624e

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/actions/bundle/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ COPY package-lock.json .
66

77
RUN npm install
88

9-
ENTRYPOINT ["node", "/index.js"];
9+
ENTRYPOINT ["node", "/index.js"]

.github/actions/commenter/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ COPY package-lock.json .
66

77
RUN npm install
88

9-
ENTRYPOINT ["node", "/index.js"];
9+
ENTRYPOINT ["node", "/index.js"]

.github/actions/coverage-report/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ COPY package-lock.json .
66

77
RUN npm install
88

9-
ENTRYPOINT ["node", "/index.js"];
9+
ENTRYPOINT ["node", "/index.js"]

.github/workflows/node-pr-jobs.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@ jobs:
1313
run:
1414
working-directory: ui
1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v4
1717
- name: Use Node.js 12.x
18-
uses: actions/setup-node@v1
18+
uses: actions/setup-node@v3
1919
with:
2020
node-version: 12.x
2121
- name: Install Dependencies
2222
run: npm ci
2323
- name: Build
2424
run: npm run build
25-
- name: Caluclate bundle size
25+
- name: Calculate bundle size
2626
id: bundle
2727
uses: ./.github/actions/bundle
2828
- name: Test
@@ -47,9 +47,9 @@ jobs:
4747
working-directory: ui
4848

4949
steps:
50-
- uses: actions/checkout@v2
50+
- uses: actions/checkout@v4
5151
- name: Use Node.js 12.x
52-
uses: actions/setup-node@v1
52+
uses: actions/setup-node@v3
5353
with:
5454
node-version: 12.x
5555
- name: Install Dependencies
@@ -63,18 +63,18 @@ jobs:
6363
run:
6464
working-directory: ui
6565
steps:
66-
- uses: actions/checkout@v2
66+
- uses: actions/checkout@v4
6767
- name: Increase file watcher limit
6868
run: echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
69-
- uses: actions/setup-node@v1
69+
- uses: actions/setup-node@v3
7070
with:
7171
node-version: 12.x
72-
- uses: microsoft/playwright-github-action@v1
72+
- uses: microsoft/playwright-github-action@v1.0.0
7373
- name: Install dependencies
7474
run: npm ci
7575
- name: run tests
7676
run: npm run test:e2e
77-
- uses: actions/upload-artifact@v2
77+
- uses: actions/upload-artifact@v4
7878
if: failure()
7979
with:
8080
name: failures

0 commit comments

Comments
 (0)