Skip to content
Closed
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
14 changes: 7 additions & 7 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
echo "REQUIRES_TESTS=${REQUIRES_TESTS}" | tee -a "$GITHUB_ENV"

- name: Checkout current commit
uses: "actions/checkout@v4"
uses: "actions/checkout@v6"
if: ${{ env.REQUIRES_TESTS != 'true' }}

- name: Get the changed files that would require tests
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
python-version: 3

- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Install test dependencies
run: |
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
python-version: 3

- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Install test dependencies
run: |
Expand All @@ -155,7 +155,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Run ruff
uses: astral-sh/ruff-action@v2
Expand All @@ -172,7 +172,7 @@ jobs:

steps:
- name: Checkout current commit
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Install python
uses: actions/setup-python@v5
Expand Down Expand Up @@ -317,7 +317,7 @@ jobs:
private-key: ${{ env.PRIVATE_KEY }}

- name: Checkout current commit
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
token: ${{ steps.app-token.outputs.token }}

Expand Down Expand Up @@ -357,7 +357,7 @@ jobs:

steps:
- name: Checkout current commit
uses: "actions/checkout@v4"
uses: "actions/checkout@v6"

- name: Install Hatch
uses: pypa/hatch@install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-next.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
fi

- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: ${{ env.RELEASE_VERSION != '' && 50 || 1 }}
fetch-tags: ${{ env.RELEASE_VERSION != '' && true || false }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/semgrep.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

steps:
- name: Checkout commit
uses: actions/checkout@v4
uses: actions/checkout@v6

- run: semgrep ci
env:
Expand Down
Loading