@@ -18,25 +18,25 @@ jobs:
1818 Pack :
1919 runs-on : ubuntu-latest
2020 steps :
21- - uses : actions/checkout@v4
21+ - uses : actions/checkout@v6
2222 - run : npm install
2323 - run : npm run build --if-present
2424 - run : npm pack --dry-run
2525 - run : npm pack | tail -1 | xargs -n1 tar -xzf
26- - uses : actions/upload-artifact@v4
26+ - uses : actions/upload-artifact@v6
2727 with :
2828 path : package
2929 Publint :
3030 runs-on : ubuntu-latest
3131 needs : Pack
3232 steps :
33- - uses : actions/download-artifact@v4
33+ - uses : actions/download-artifact@v7
3434 - run : npx publint ./artifact
3535 Webpack :
3636 runs-on : ubuntu-latest
3737 needs : Pack
3838 steps :
39- - uses : actions/download-artifact@v4
39+ - uses : actions/download-artifact@v7
4040 - run : npm install --omit=dev ./artifact
4141 - run : echo "$IMPORT_STATEMENT" > index.js
4242 - run : webpack --entry ./index.js
4545 runs-on : ubuntu-latest
4646 needs : Pack
4747 steps :
48- - uses : actions/download-artifact@v4
48+ - uses : actions/download-artifact@v7
4949 - run : npm install --omit=dev ./artifact
5050 - run : echo "$IMPORT_STATEMENT" > index.js
5151 - run : >
@@ -57,15 +57,15 @@ jobs:
5757 runs-on : ubuntu-latest
5858 needs : Pack
5959 steps :
60- - uses : actions/download-artifact@v4
60+ - uses : actions/download-artifact@v7
6161 - run : npm install --omit=dev ./artifact rollup@4 @rollup/plugin-json @rollup/plugin-node-resolve
6262 - run : echo "$IMPORT_STATEMENT" > index.js
6363 - run : npx rollup -p node-resolve -p @rollup/plugin-json index.js
6464 Vite :
6565 runs-on : ubuntu-latest
6666 needs : Pack
6767 steps :
68- - uses : actions/download-artifact@v4
68+ - uses : actions/download-artifact@v7
6969 - run : npm install --omit=dev ./artifact
7070 - run : echo '<script type="module">$IMPORT_STATEMENT</script>' > index.html
7171 - run : npx vite build
7474 runs-on : ubuntu-latest
7575 needs : Pack
7676 steps :
77- - uses : actions/download-artifact@v4
77+ - uses : actions/download-artifact@v7
7878 - run : echo '{}' > package.json
7979 - run : echo "$IMPORT_STATEMENT" > index.js
8080 - run : npm install --omit=dev ./artifact
8383 runs-on : ubuntu-latest
8484 needs : Pack
8585 steps :
86- - uses : actions/download-artifact@v4
86+ - uses : actions/download-artifact@v7
8787 - run : echo '{"type":"module"}' > package.json
8888 - run : npm install --omit=dev ./artifact @sindresorhus/tsconfig
8989 - run : echo "$IMPORT_STATEMENT" > index.ts
9696 runs-on : ubuntu-latest
9797 needs : Pack
9898 steps :
99- - uses : actions/download-artifact@v4
100- - uses : actions/setup-node@v4
99+ - uses : actions/download-artifact@v7
100+ - uses : actions/setup-node@v6
101101 with :
102102 node-version-file : artifact/package.json
103103 - run : echo "$IMPORT_STATEMENT" > index.mjs
0 commit comments