From 0dafa028fbb2aa256596ac29ddfe409168e2000a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 31 Jul 2026 15:08:49 +0000 Subject: [PATCH] Bump the github-actions group across 1 directory with 2 updates Bumps the github-actions group with 2 updates in the / directory: [actions/setup-node](https://github.com/actions/setup-node) and [actions/cache](https://github.com/actions/cache). Updates `actions/setup-node` from 4 to 7 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v4...v7) Updates `actions/cache` from 4 to 6 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-node dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 27284b7..3c30084 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -112,7 +112,7 @@ jobs: with: python-version: "3.12" - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v7 with: node-version: "22" @@ -123,7 +123,7 @@ jobs: # is no lockfile for setup-node to key a cache on; cache the npm # download cache itself instead. - name: Cache npm downloads - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ~/.npm key: npm-e2e-${{ runner.os }}-${{ hashFiles('src/rote/adapters/_ts_common.py') }} @@ -153,7 +153,7 @@ jobs: with: python-version: "3.12" - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v7 with: node-version: "22" @@ -161,7 +161,7 @@ jobs: run: python -m pip install -e ".[dev]" - name: Cache npm downloads - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ~/.npm key: npm-dbosts-${{ runner.os }}-${{ hashFiles('src/rote/adapters/_ts_common.py') }}