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/appcast.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: macos-latest
steps:
- name: Checkout website
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: website

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dockerhub-repo-description.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Update repo description
uses: peter-evans/dockerhub-description@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/[email protected]
with:
python-version: '3.x'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
permissions:
id-token: write
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/[email protected]
with:
python-version: '3.x'
Expand All @@ -37,7 +37,7 @@ jobs:
needs: pypi
steps:
- name: Checkout project
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Fetching tags
run: git fetch --prune --unshallow --force --tags
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ jobs:
steps:

- name: Checkout merge commit
uses: actions/checkout@v5
uses: actions/checkout@v6
if: github.event_name == 'pull_request_target'
with:
ref: 'refs/pull/${{ github.event.number }}/merge'
persist-credentials: false

- name: Checkout head commit
uses: actions/checkout@v5
uses: actions/checkout@v6
if: github.event_name != 'pull_request_target'

- name: Set up Python ${{ matrix.python-version }}
Expand Down Expand Up @@ -76,14 +76,14 @@ jobs:
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout merge commit
uses: actions/checkout@v5
uses: actions/checkout@v6
if: github.event_name == 'pull_request_target'
with:
ref: 'refs/pull/${{ github.event.number }}/merge'
persist-credentials: false

- name: Checkout head commit
uses: actions/checkout@v5
uses: actions/checkout@v6
if: github.event_name != 'pull_request_target'

- name: Set up Python
Expand Down Expand Up @@ -150,14 +150,14 @@ jobs:
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout merge commit
uses: actions/checkout@v5
uses: actions/checkout@v6
if: github.event_name == 'pull_request_target'
with:
ref: 'refs/pull/${{ github.event.number }}/merge'
persist-credentials: false

- name: Checkout head commit
uses: actions/checkout@v5
uses: actions/checkout@v6
if: github.event_name != 'pull_request_target'

- name: Set up Python
Expand Down
Loading