From ee709c3b5fcd04fbc8d3a13ad8310d18ab4d2af0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 4 Sep 2025 07:50:23 +0000 Subject: [PATCH 1/2] Bump actions/setup-node from 4 to 5 Bumps [actions/setup-node](https://github.com/actions/setup-node) from 4 to 5. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/setup-node dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/workflow.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 29528dc..2919ea3 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -16,7 +16,7 @@ jobs: - name: Checkout tree uses: actions/checkout@v5 - name: Set-up Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: node-version-file: .nvmrc - name: Set-up OCaml From 98dc5742ce5fc2eb63b32734d29837df252ebb0e Mon Sep 17 00:00:00 2001 From: Sora Morimoto Date: Sun, 7 Sep 2025 00:39:16 +0900 Subject: [PATCH 2/2] `check-latest: true` and `package-manager-cache: false` Signed-off-by: Sora Morimoto --- .github/workflows/workflow.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 2919ea3..b2c0b05 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -18,7 +18,9 @@ jobs: - name: Set-up Node.js uses: actions/setup-node@v5 with: + check-latest: true node-version-file: .nvmrc + package-manager-cache: false - name: Set-up OCaml uses: ocaml/setup-ocaml@v3 with: