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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
languages: ${{ steps.languages.outputs.languages }}
steps:
- name: Check out ${{ github.repository }}
uses: actions/checkout@v6.0.0
uses: actions/checkout@v6.0.1

- name: Set up Python 3
uses: actions/setup-python@v6.1.0
Expand All @@ -71,7 +71,7 @@ jobs:
} >> "$GITHUB_OUTPUT"

- name: Check out branch ${{ steps.version.outputs.current }}
uses: actions/checkout@v6.0.0
uses: actions/checkout@v6.0.1
with:
ref: ${{ steps.version.outputs.current }}
path: ${{ steps.version.outputs.current }}
Expand Down Expand Up @@ -104,18 +104,18 @@ jobs:

steps:
- name: Check out ${{ github.repository }}
uses: actions/checkout@v6.0.0
uses: actions/checkout@v6.0.1

- name: Check out ${{ matrix.cpython_version }} branch of CPython
uses: actions/checkout@v6.0.0
uses: actions/checkout@v6.0.1
with:
repository: python/cpython
persist-credentials: false
ref: ${{ matrix.cpython_version }}
path: cpython

- name: Check out ${{ matrix.cpython_version }} branch of ${{ github.repository }}
uses: actions/checkout@v6.0.0
uses: actions/checkout@v6.0.1
with:
ref: ${{ matrix.cpython_version }}
path: cpython/Doc/locales
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v6.0.0
- uses: actions/checkout@v6.0.1
with:
persist-credentials: false
- uses: actions/setup-python@v6.1.0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python-docs-theme.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@ jobs:

steps:
- name: Check out repository
uses: actions/checkout@v6.0.0
uses: actions/checkout@v6.0.1
with:
ref: python-docs-theme

- name: Check out python-docs-theme
uses: actions/checkout@v6.0.0
uses: actions/checkout@v6.0.1
with:
repository: python/python-docs-theme
persist-credentials: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/updpyver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

steps:
- name: Check out ${{ github.repository }}
uses: actions/checkout@v6.0.0
uses: actions/checkout@v6.0.1
with:
fetch-depth: 0

Expand Down
Loading