diff --git a/.github/workflows/emscripten.yml b/.github/workflows/emscripten.yml index ebf49429..ae628287 100644 --- a/.github/workflows/emscripten.yml +++ b/.github/workflows/emscripten.yml @@ -11,13 +11,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Cancel previous runs - uses: styfle/cancel-workflow-action@0.9.1 + uses: styfle/cancel-workflow-action@0.12.1 with: access_token: ${{ github.token }} all_but_latest: true - name: Checkout Base Repo - uses: actions/checkout@v2 + uses: actions/checkout@v4.1.1 - name: Checkout Submodules run: | @@ -33,7 +33,7 @@ jobs: docker run --rm --env LC_ALL=C.UTF-8 -v "${PWD}":/code libass/jso:latest - name: Upload Nightly Build - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4.3.1 if: (github.event_name == 'push' || github.event_name == 'workflow_dispatch') && github.ref == 'refs/heads/master' with: name: js diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9ea4b1a7..33e4a516 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3.0.2 + uses: actions/checkout@v4.1.1 - name: Checkout submodules run: | @@ -28,9 +28,9 @@ jobs: docker run --rm -v "${PWD}":/code libass/jso:latest - name: Setup node environment for NPM - uses: actions/setup-node@v3.1.1 + uses: actions/setup-node@v4.0.2 with: - node-version: 14 + node-version: 20 registry-url: 'https://registry.npmjs.org' check-latest: true