From c0c76c417f5535db608365cd52b6211ddebfd679 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 9 Feb 2024 01:09:08 +0000 Subject: [PATCH] chore(deps): bump the github-actions-dependencies group with 3 updates Bumps the github-actions-dependencies group with 3 updates: [actions/setup-node](https://github.com/actions/setup-node), [actions/cache](https://github.com/actions/cache) and [codecov/codecov-action](https://github.com/codecov/codecov-action). Updates `actions/setup-node` from 4.0.1 to 4.0.2 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v4.0.1...v4.0.2) Updates `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) Updates `codecov/codecov-action` from 3 to 4 - [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/v3...v4) --- updated-dependencies: - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions-dependencies - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-dependencies - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/__build-website.yml | 4 ++-- .github/workflows/__shared-ci.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/__build-website.yml b/.github/workflows/__build-website.yml index 2eb6977b..bc6b37e0 100644 --- a/.github/workflows/__build-website.yml +++ b/.github/workflows/__build-website.yml @@ -36,7 +36,7 @@ jobs: with: name: documentation - - uses: actions/setup-node@v4.0.1 + - uses: actions/setup-node@v4.0.2 with: node-version-file: ".nvmrc" cache: yarn @@ -47,7 +47,7 @@ jobs: run: yarn install --frozen-lockfile - name: ♻️ Webpack cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: website/node_modules/.cache/webpack key: ${{ runner.os }}-webpack-${{ github.sha }} diff --git a/.github/workflows/__shared-ci.yml b/.github/workflows/__shared-ci.yml index 9cd24480..1c3b8d1a 100644 --- a/.github/workflows/__shared-ci.yml +++ b/.github/workflows/__shared-ci.yml @@ -40,7 +40,7 @@ jobs: - name: 📊 Upload coverage results to Codecov if: matrix.stable - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: file: ./build/logs/clover.xml