From 13b9ef555b00d6cdeb94c824d5ef336cda99327b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 9 Oct 2024 19:31:37 +0000 Subject: [PATCH] Bump actions/cache from 2 to 4 Bumps [actions/cache](https://github.com/actions/cache) from 2 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/v2...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/close_jira_issue_by_pr_merge.yml | 2 +- .github/workflows/link_edited_pr_to_jira_issue.yml | 2 +- .github/workflows/pre-commit-reuse.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/close_jira_issue_by_pr_merge.yml b/.github/workflows/close_jira_issue_by_pr_merge.yml index b0697c5ae84b..f42d4edb6763 100644 --- a/.github/workflows/close_jira_issue_by_pr_merge.yml +++ b/.github/workflows/close_jira_issue_by_pr_merge.yml @@ -19,7 +19,7 @@ jobs: python-version: "3.10" - name: Setup Poetry uses: Gr1N/setup-poetry@v9 - - uses: actions/cache@v2 + - uses: actions/cache@v4 with: path: .venv key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }} diff --git a/.github/workflows/link_edited_pr_to_jira_issue.yml b/.github/workflows/link_edited_pr_to_jira_issue.yml index 945d738d939e..0f06c81cb59e 100644 --- a/.github/workflows/link_edited_pr_to_jira_issue.yml +++ b/.github/workflows/link_edited_pr_to_jira_issue.yml @@ -19,7 +19,7 @@ jobs: python-version: "3.10" - name: Setup Poetry uses: Gr1N/setup-poetry@v9 - - uses: actions/cache@v2 + - uses: actions/cache@v4 with: path: .venv key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }} diff --git a/.github/workflows/pre-commit-reuse.yml b/.github/workflows/pre-commit-reuse.yml index e20a4ca05a19..8dff176c35d8 100644 --- a/.github/workflows/pre-commit-reuse.yml +++ b/.github/workflows/pre-commit-reuse.yml @@ -33,7 +33,7 @@ jobs: - name: Cache Pre commit id: cache-pre-commit - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.cache/pre-commit key: ${{ runner.os }}-pre-commit @@ -110,7 +110,7 @@ jobs: pytest-xml-coverage-path: coverage_report/coverage.xml junitxml-path: .report_pytest.xml - - uses: actions/cache/save@v3 + - uses: actions/cache/save@v4 if: always() with: path: ~/.cache/pre-commit