Skip to content
Merged
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
10 changes: 5 additions & 5 deletions .github/workflows/lint_pr.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -7,7 +7,7 @@ jobs:
has_python_changes: ${{ steps.changed-files.outputs.has_python_changes }}
files: ${{ steps.changed-files.outputs.files }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6
with:
fetch-depth: 0 # To get all history for git diff commands

Expand DownExpand Up@@ -71,15 +71,15 @@ jobs:
exit 0
fi

- uses: actions/checkout@v3
- uses: actions/checkout@v6
with:
fetch-depth: 0

- uses: actions/setup-python@v4
- uses: actions/setup-python@v6
with:
python-version: 3.12

- uses: actions/cache@v3
- uses: actions/cache@v5
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('requirements-dev.txt') }}
Expand DownExpand Up@@ -273,7 +273,7 @@ jobs:
if: ${{ always() }}
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6

- name: Summarize results
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint_python.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -4,8 +4,8 @@ jobs:
lint_python:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: 3.12
- name: Install dependencies
Expand Down
Loading