Skip to content
This repository was archived by the owner on Apr 22, 2025. It is now read-only.

Commit aee9b72

Browse files
Update build to avoid deprecated GitHub actions (#696)
Signed-off-by: Mark S. Lewis <[email protected]>
1 parent 6164a4d commit aee9b72

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.github/workflows/push.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ jobs:
1414
needs: build
1515
runs-on: ubuntu-22.04
1616
steps:
17-
- uses: actions/setup-node@v3
17+
- uses: actions/setup-node@v4
1818
with:
1919
node-version: 18
2020
registry-url: 'https://registry.npmjs.org'
2121
- name: Update npm
2222
run: |
2323
npm update --global npm
2424
npm --version
25-
- uses: actions/checkout@v3
25+
- uses: actions/checkout@v4
2626
- run: npm install
2727
- run: npm run compile
2828
- name: Publish
@@ -36,19 +36,19 @@ jobs:
3636
needs: build
3737
runs-on: ubuntu-22.04
3838
steps:
39-
- uses: actions/setup-node@v3
39+
- uses: actions/setup-node@v4
4040
with:
4141
node-version: 18
4242
- name: Update npm
4343
run: |
4444
npm update --global npm
4545
npm --version
4646
- name: Checkout source
47-
uses: actions/checkout@v3
47+
uses: actions/checkout@v4
4848
with:
4949
path: source
5050
- name: Checkout publish
51-
uses: actions/checkout@v3
51+
uses: actions/checkout@v4
5252
with:
5353
path: publish
5454
ref: gh-pages

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ jobs:
3030
- 20
3131

3232
steps:
33-
- uses: actions/checkout@v3
33+
- uses: actions/checkout@v4
3434
with:
3535
ref: ${{ inputs.checkout-ref }}
3636
- name: Use Node.js ${{ matrix.node-version }}
37-
uses: actions/setup-node@v3
37+
uses: actions/setup-node@v4
3838
with:
3939
node-version: ${{ matrix.node-version }}
4040
- name: Install SoftHSM
@@ -49,13 +49,13 @@ jobs:
4949
- run: npm test
5050
- name: "Archive unit test debug log"
5151
if: ${{ failure() }}
52-
uses: actions/upload-artifact@v3
52+
uses: actions/upload-artifact@v4
5353
with:
5454
name: ${{ matrix.node-version }}-unit-test-debug.log
5555
path: test/temp/debug.log
5656
- name: "Archive scenario test debug log"
5757
if: ${{ failure() }}
58-
uses: actions/upload-artifact@v3
58+
uses: actions/upload-artifact@v4
5959
with:
6060
name: ${{ matrix.node-version }}-cucumber-debug.log
6161
path: test/temp/debugc.log

.github/workflows/vulnerability_scan.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ jobs:
1616
- fabric-network
1717
- fabric-protos
1818
steps:
19-
- uses: actions/checkout@v3
20-
- uses: actions/setup-node@v3
19+
- uses: actions/checkout@v4
20+
- uses: actions/setup-node@v4
2121
with:
2222
node-version: 18.x
2323
- name: Update npm

0 commit comments

Comments
 (0)