From 5b31f448e3f8400982e2c2711b80946a923bdb8d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Feb 2024 14:29:18 +0000 Subject: [PATCH] Bump the actions group with 2 updates Bumps the actions group with 2 updates: [actions/cache](https://github.com/actions/cache) and [codecov/codecov-action](https://github.com/codecov/codecov-action). 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/cache dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/meeting-facilitator.yaml | 4 ++-- .github/workflows/populate-current-roles.yaml | 2 +- .github/workflows/support-triager.yaml | 4 ++-- .github/workflows/tests.yaml | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/meeting-facilitator.yaml b/.github/workflows/meeting-facilitator.yaml index f5c5906..79e92ef 100644 --- a/.github/workflows/meeting-facilitator.yaml +++ b/.github/workflows/meeting-facilitator.yaml @@ -52,7 +52,7 @@ jobs: - name: Load cached venv if one exists id: cached-poetry-dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .venv key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }} @@ -117,7 +117,7 @@ jobs: - name: Load cached venv if one exists id: cached-poetry-dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .venv key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }} diff --git a/.github/workflows/populate-current-roles.yaml b/.github/workflows/populate-current-roles.yaml index ba9016f..be5c8e7 100644 --- a/.github/workflows/populate-current-roles.yaml +++ b/.github/workflows/populate-current-roles.yaml @@ -61,7 +61,7 @@ jobs: - name: Load cached venv if one exists id: cached-poetry-dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .venv key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }} diff --git a/.github/workflows/support-triager.yaml b/.github/workflows/support-triager.yaml index df2fd18..9098f62 100644 --- a/.github/workflows/support-triager.yaml +++ b/.github/workflows/support-triager.yaml @@ -52,7 +52,7 @@ jobs: - name: Load cached venv if one exists id: cached-poetry-dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .venv key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }} @@ -119,7 +119,7 @@ jobs: - name: Load cached venv if one exists id: cached-poetry-dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .venv key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }} diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 6a60337..ba2e419 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -34,7 +34,7 @@ jobs: - name: Load cached venv if one exists id: cached-poetry-dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .venv key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }} @@ -58,7 +58,7 @@ jobs: - name: Upload coverage to Codecov if: matrix.python-version == '3.10' - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: fail_ci_if_error: true token: ${{ secrets.CODECOV_TOKEN }}