From 5904d9509934ed1f1e84356c50dda34b610493a8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 18 Jan 2024 08:28:17 +0000 Subject: [PATCH 1/2] Bump actions/cache from 3 to 4 Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [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/v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index be542941..98402a6e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -54,7 +54,7 @@ jobs: node: ${{ matrix.node }} - name: Save build artifacts - uses: actions/cache/save@v3 + uses: actions/cache/save@v4 with: path: . key: ${{ matrix.node }}-${{ env.CACHE_KEY }} @@ -76,7 +76,7 @@ jobs: node-version: ${{ matrix.node }} cache: npm - - uses: actions/cache/restore@v3 + - uses: actions/cache/restore@v4 with: path: . key: ${{ matrix.node }}-${{ env.CACHE_KEY }} @@ -101,7 +101,7 @@ jobs: node-version: 18 cache: npm - - uses: actions/cache/restore@v3 + - uses: actions/cache/restore@v4 with: path: . key: 18-${{ env.CACHE_KEY }} From 4fe372be935c2aa0882e0f1e58d33eead4be966d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 26 Jan 2024 08:10:31 +0000 Subject: [PATCH 2/2] Bump codecov/codecov-action from 3.1.4 to 3.1.5 Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 3.1.4 to 3.1.5. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/eaaf4bedf32dbdc6b720b63067d99c4d77d6047d...4fe8c5f003fae66aa5ebb77cfd3e7bfbbda0b6b0) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 98402a6e..ce50b6b7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -85,7 +85,7 @@ jobs: # only upload coverage on one node version - if: matrix.node == 18 - uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # pin@3.1.4 + uses: codecov/codecov-action@4fe8c5f003fae66aa5ebb77cfd3e7bfbbda0b6b0 # pin@3.1.5 lint: needs: build # Require build to complete before running tests