Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/close_jira_issue_by_pr_merge.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -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') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/link_edited_pr_to_jira_issue.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -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') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pre-commit-reuse.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -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
Expand DownExpand Up@@ -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
Expand Down