Skip to content

Commit be34466

Browse files
committed
delete duplicate app 2.js file and update github actions to v4
1 parent 37c6a80 commit be34466

3 files changed

Lines changed: 6 additions & 651 deletions

File tree

.github/workflows/merge.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
node-version: [20.x]
1515

1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818

1919
- name: Use Node.js ${{ matrix.node-version }}
20-
uses: actions/setup-node@v3
20+
uses: actions/setup-node@v4
2121
with:
2222
node-version: ${{ matrix.node-version }}
2323

@@ -27,7 +27,7 @@ jobs:
2727
npm run build
2828
2929
- name: Get version
30-
run: echo "::set-output name=version::v$(./ci/getVersion.sh)"
30+
run: echo "version=v$(./ci/getVersion.sh)" >> $GITHUB_OUTPUT
3131
id: version
3232

3333
- name: Verify version

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
node-version: [20.x]
1414

1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717

1818
- name: Use Node.js ${{ matrix.node-version }}
19-
uses: actions/setup-node@v3
19+
uses: actions/setup-node@v4
2020
with:
2121
node-version: ${{ matrix.node-version }}
2222

@@ -29,7 +29,7 @@ jobs:
2929
zip -r -j static_unminified.zip dist/*
3030
3131
- name: Get version
32-
run: echo "::set-output name=version::v$(./ci/getVersion.sh)"
32+
run: echo "version=v$(./ci/getVersion.sh)" >> $GITHUB_OUTPUT
3333
id: version
3434

3535
- name: Verify version

0 commit comments

Comments
 (0)