From 9593853c7bd19ed0f0e481fc4d12fef5f19fb51e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Sep 2025 15:12:16 +0000 Subject: [PATCH 1/2] chore(deps-gha): 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/check-typescript-projects.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check-typescript-projects.yml b/.github/workflows/check-typescript-projects.yml index 1c8983b..d4ac1d1 100644 --- a/.github/workflows/check-typescript-projects.yml +++ b/.github/workflows/check-typescript-projects.yml @@ -30,7 +30,7 @@ jobs: with: repository: 'maxGraph/maxGraph' - name: Setup node - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: node-version-file: '.nvmrc' - name: Install dependencies @@ -71,7 +71,7 @@ jobs: path: ${{github.workspace}}/../maxgraph-npm-package - uses: actions/checkout@v5 - name: Setup node - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: node-version-file: '.nvmrc' - name: Install dependencies From adf57d2f729ae872a62341aeb318e02c52b52ffb Mon Sep 17 00:00:00 2001 From: Thomas Bouffard <27200110+tbouffard@users.noreply.github.com> Date: Thu, 25 Sep 2025 14:45:21 +0200 Subject: [PATCH 2/2] attempt to use cache for the maxgraph package generation --- .github/workflows/check-typescript-projects.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/check-typescript-projects.yml b/.github/workflows/check-typescript-projects.yml index d4ac1d1..4b9f9ca 100644 --- a/.github/workflows/check-typescript-projects.yml +++ b/.github/workflows/check-typescript-projects.yml @@ -33,6 +33,7 @@ jobs: uses: actions/setup-node@v5 with: node-version-file: '.nvmrc' + cache: npm - name: Install dependencies run: npm install - name: Build package