diff --git a/.github/workflows/build-alpine.yml b/.github/workflows/build-alpine.yml index d1290683..29b981fe 100644 --- a/.github/workflows/build-alpine.yml +++ b/.github/workflows/build-alpine.yml @@ -50,7 +50,7 @@ jobs: run: | (test -f root/pkg-fetch/dist/*.sha256sum && echo ::set-output name=EXISTS::true) || echo ::set-output name=EXISTS::false - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 if: steps.check_file.outputs.EXISTS == 'true' with: name: node${{ matrix.target-node }}-alpine-${{ matrix.target-arch }} diff --git a/.github/workflows/build-linux.yml b/.github/workflows/build-linux.yml index 469b311f..4418aa05 100644 --- a/.github/workflows/build-linux.yml +++ b/.github/workflows/build-linux.yml @@ -38,7 +38,7 @@ jobs: run: | (test -f root/pkg-fetch/dist/*.sha256sum && echo ::set-output name=EXISTS::true) || echo ::set-output name=EXISTS::false - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 if: steps.check_file.outputs.EXISTS == 'true' with: name: node${{ matrix.target-node }}-linux-x64 @@ -79,7 +79,7 @@ jobs: run: | (test -f root/pkg-fetch/dist/*.sha256sum && echo ::set-output name=EXISTS::true) || echo ::set-output name=EXISTS::false - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 if: steps.check_file.outputs.EXISTS == 'true' with: name: node${{ matrix.target-node }}-linux-arm64 diff --git a/.github/workflows/build-linuxstatic.yml b/.github/workflows/build-linuxstatic.yml index 58c9ae11..ea797a16 100644 --- a/.github/workflows/build-linuxstatic.yml +++ b/.github/workflows/build-linuxstatic.yml @@ -53,7 +53,7 @@ jobs: run: | (test -f root/pkg-fetch/dist/*.sha256sum && echo ::set-output name=EXISTS::true) || echo ::set-output name=EXISTS::false - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 if: steps.check_file.outputs.EXISTS == 'true' with: name: node${{ matrix.target-node }}-linuxstatic-${{ matrix.target-arch }} diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index 91909088..0df431e2 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -34,7 +34,7 @@ jobs: run: | (test -f dist/*.sha256sum && echo ::set-output name=EXISTS::true) || echo ::set-output name=EXISTS::false - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 if: steps.check_file.outputs.EXISTS == 'true' with: name: node${{ matrix.target-node }}-macos-x64 diff --git a/.github/workflows/build-windows.yml b/.github/workflows/build-windows.yml index ff428849..f93d073f 100644 --- a/.github/workflows/build-windows.yml +++ b/.github/workflows/build-windows.yml @@ -33,7 +33,7 @@ jobs: run: | if (Test-Path -Path dist\\*.sha256sum -PathType Leaf) { echo "::set-output name=EXISTS::true" } else { echo "::set-output name=EXISTS::false" } - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 if: steps.check_file.outputs.EXISTS == 'true' with: name: node${{ matrix.target-node }}-windows-${{ matrix.target-arch }} diff --git a/.gitignore b/.gitignore index 714abaf8..e4bd95ea 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,5 @@ yarn-error.log # TypeScript incremental compilation cache *.tsbuildinfo + +.idea