From 995f49ec10cec0839aa724d3afd047eca823a132 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 1 Apr 2025 21:07:33 +0000 Subject: [PATCH 1/2] chore(deps): bump actions/cache from 4.2.2 to 4.2.3 Bumps [actions/cache](https://github.com/actions/cache) from 4.2.2 to 4.2.3. - [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.2.2...v4.2.3) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 4.2.3 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/blog.yaml | 2 +- .github/workflows/ci.yaml | 2 +- .github/workflows/release_main.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/blog.yaml b/.github/workflows/blog.yaml index 513f1b04..cdde5210 100644 --- a/.github/workflows/blog.yaml +++ b/.github/workflows/blog.yaml @@ -29,7 +29,7 @@ jobs: run: | Rscript ./dependencies.R - name: Restore Blogdown Cache - uses: actions/cache@v4.2.2 + uses: actions/cache@v4.2.3 with: path: | ./blogdown diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f761cd3f..409fc45c 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -14,7 +14,7 @@ jobs: - uses: actions/setup-node@v4 with: node-version: 18 - - uses: actions/cache@v4.2.2 + - uses: actions/cache@v4.2.3 with: path: ~/.npm key: ${{ runner.os }}-node3-${{ hashFiles('**/package-lock.json') }} diff --git a/.github/workflows/release_main.yml b/.github/workflows/release_main.yml index 15d570e2..3c751ffa 100644 --- a/.github/workflows/release_main.yml +++ b/.github/workflows/release_main.yml @@ -47,7 +47,7 @@ jobs: with: node-version: 18 - name: Cache Node.js modules - uses: actions/cache@v4.2.2 + uses: actions/cache@v4.2.3 with: path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS key: ${{ runner.OS }}-node2-${{ hashFiles('**/package-lock.json') }} From 50a8d5098f4012af1aadec39b43626a065c93248 Mon Sep 17 00:00:00 2001 From: george haff Date: Wed, 9 Apr 2025 17:27:22 -0400 Subject: [PATCH 2/2] specify just major version for gh 'actions/cache' so dependabot doesnt hound us about minor and patch updates --- .github/workflows/blog.yaml | 2 +- .github/workflows/ci.yaml | 2 +- .github/workflows/release_main.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/blog.yaml b/.github/workflows/blog.yaml index cdde5210..0174e69c 100644 --- a/.github/workflows/blog.yaml +++ b/.github/workflows/blog.yaml @@ -29,7 +29,7 @@ jobs: run: | Rscript ./dependencies.R - name: Restore Blogdown Cache - uses: actions/cache@v4.2.3 + uses: actions/cache@v4 with: path: | ./blogdown diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 409fc45c..ed472970 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -14,7 +14,7 @@ jobs: - uses: actions/setup-node@v4 with: node-version: 18 - - uses: actions/cache@v4.2.3 + - uses: actions/cache@v4 with: path: ~/.npm key: ${{ runner.os }}-node3-${{ hashFiles('**/package-lock.json') }} diff --git a/.github/workflows/release_main.yml b/.github/workflows/release_main.yml index 3c751ffa..2dfa91df 100644 --- a/.github/workflows/release_main.yml +++ b/.github/workflows/release_main.yml @@ -47,7 +47,7 @@ jobs: with: node-version: 18 - name: Cache Node.js modules - uses: actions/cache@v4.2.3 + uses: actions/cache@v4 with: path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS key: ${{ runner.OS }}-node2-${{ hashFiles('**/package-lock.json') }}