Skip to content

Commit 3beb8ef

Browse files
committed
updated solid-logic, bumped v to 2.3.1, updated actions
1 parent ff79935 commit 3beb8ef

File tree

3 files changed

+141
-751
lines changed

3 files changed

+141
-751
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ jobs:
2525
- 22.x
2626

2727
steps:
28-
- uses: actions/checkout@v2
28+
- uses: actions/checkout@v5
2929
- name: Use Node.js ${{ matrix.node-version }}
30-
uses: actions/setup-node@v1
30+
uses: actions/setup-node@v5
3131
with:
3232
node-version: ${{ matrix.node-version }}
3333
- run: npm ci
@@ -48,18 +48,18 @@ jobs:
4848
needs: build
4949
runs-on: ubuntu-latest
5050
steps:
51-
- uses: actions/download-artifact@v4
51+
- uses: actions/download-artifact@v5
5252
with:
5353
name: build
54-
- uses: actions/setup-node@v1
54+
- uses: actions/setup-node@v5
5555
with:
5656
node-version: 20.x
5757
- uses: rlespinasse/[email protected]
5858
- name: Append commit hash to package version
5959
run: 'sed -i -E "s/(\"version\": *\"[^\"]+)/\1-${GITHUB_SHA_SHORT}/" package.json'
6060
- name: Disable pre- and post-publish actions
6161
run: 'sed -i -E "s/\"((pre|post)publish)/\"ignore:\1/" package.json'
62-
- uses: JS-DevTools/npm-publish@v1
62+
- uses: JS-DevTools/npm-publish@v4.1.0
6363
if: github.actor != 'dependabot[bot]' && github.actor != 'dependabot-preview[bot]'
6464
with:
6565
token: ${{ secrets.NPM_TOKEN }}
@@ -70,15 +70,15 @@ jobs:
7070
runs-on: ubuntu-latest
7171
if: github.ref == 'refs/heads/main'
7272
steps:
73-
- uses: actions/download-artifact@v4
73+
- uses: actions/download-artifact@v5
7474
with:
7575
name: build
76-
- uses: actions/setup-node@v1
76+
- uses: actions/setup-node@v5
7777
with:
7878
node-version: 20.x
7979
- name: Disable pre- and post-publish actions
8080
run: 'sed -i -E "s/\"((pre|post)publish)/\"ignore:\1/" package.json'
81-
- uses: JS-DevTools/npm-publish@v1
81+
- uses: JS-DevTools/npm-publish@v4.1.0
8282
if: github.actor != 'dependabot[bot]' && github.actor != 'dependabot-preview[bot]'
8383
with:
8484
token: ${{ secrets.NPM_TOKEN }}

0 commit comments

Comments
 (0)