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
6 changes: 3 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Set up Python
id: setup-python
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
# No cache: pip here. It keys off a hashed requirements.txt or
# pyproject.toml, and this repository ships neither, so it only ever
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
# bashcov with simplecov-cobertura generates coverage/coverage.xml
COVERAGE_REPORT: coverage/coverage.xml
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 2 # fetch-depth of 2 enables diff coverage
- name: Install Git ${{ matrix.git-version }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/changelog-autoupdate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
changelog-autoupdate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0 # Full history needed for git cliff
- name: Install git-cliff
Expand All @@ -27,7 +27,7 @@ jobs:
- name: Update Unreleased section
run: scripts/update-unreleased.sh
- name: Format CHANGELOG.md
uses: DavidAnson/markdownlint-cli2-action@v23
uses: DavidAnson/markdownlint-cli2-action@v24
with:
config: .markdownlint.yml
globs: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/delete-bot-branches-for-closed-prs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
github.event.pull_request.head.repo.full_name == github.repository &&
github.event.pull_request.merged == false
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: detect bot author
id: bot-author-check
uses: ./.github/actions/detect-bot-author
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/greet-new-contributors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
greeting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: detect bot author
id: bot-author-check
uses: ./.github/actions/detect-bot-author
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
actionlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Check workflow files
uses: docker://rhysd/actionlint:v1.7.12
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pre-commit-autoupdate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
BRANCH_NAME: chore/pre-commit-autoupdate
PRECOMMIT_CONFIG_FILE: .pre-commit-config.yaml
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Set up Python
id: setup-python
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
# No cache: pip here. It keys off a hashed requirements.txt or
# pyproject.toml, and this repository ships neither, so it only ever
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
release-pr:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
echo "branch=release/$tag" >> "$GITHUB_OUTPUT"

- name: Set up Python
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
# No cache: pip here. It keys off a hashed requirements.txt or
# pyproject.toml, and this repository ships neither, so it only ever
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
# parser can be used. A tag push already lands on the tag; a manual
# dispatch lands on the default branch. The explicit checkout below moves
# to the requested tag in both cases.
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
# Checked out before the branch name is parsed so that the shared,
# unit-tested parser can be used. The ref is the merge commit, never the
# attacker-influenced branch name.
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.merge_commit_sha }}
Expand Down
Loading