diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6ff50f6..cb0dfbd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,6 +17,7 @@ permissions: env: CARGO_TERM_COLOR: always RELEASE_TAG: ${{ github.event_name == 'workflow_dispatch' && inputs.release_tag || github.ref_name }} + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true" jobs: build-linux-ubuntu: diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml index e0572ad..2a42350 100644 --- a/.github/workflows/security.yml +++ b/.github/workflows/security.yml @@ -12,13 +12,16 @@ on: permissions: contents: read +env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true" + jobs: checks: name: Rust Checks runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install cargo-audit run: cargo install cargo-audit --locked