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
6 changes: 3 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Setup BATS
uses: bats-core/bats-action@4.0.0
- name: Install bash and GNU parallel (macOS only)
Expand All @@ -49,14 +49,14 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Install pre-commit
run: |
pip install --upgrade pip
pip install --upgrade pre-commit
- name: Cache pre-commit hooks
id: cache-pre-commit-hooks
uses: actions/cache@v5
uses: actions/cache@v6
env:
CACHE_NUMBER: 1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/bot-automerge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PR_NUMBER: ${{ github.event.pull_request.number }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Dependabot metadata
if: github.actor == 'dependabot[bot]'
id: dependabot
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/changelog-autoupdate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,17 @@ 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
uses: taiki-e/install-action@v2
uses: taiki-e/install-action@v2.85.4
with:
tool: git-cliff
- 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/lint-github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- added|modified:
- .github/workflows/*.yaml
- .github/workflows/*.yml
- uses: actions/checkout@v6
- uses: actions/checkout@v7
if: >-
github.event_name == 'push' ||
github.event_name == 'workflow_dispatch' ||
Expand Down
6 changes: 3 additions & 3 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:
check-latest: true
cache: pip
Expand All @@ -33,7 +33,7 @@ jobs:
python -m pip install pre-commit
- name: Cache pre-commit hooks
id: cache-pre-commit
uses: actions/cache@v5
uses: actions/cache@v6
env:
CACHE_NUMBER: 0
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-prepare-readme.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
os: [ubuntu-latest, macos-latest]
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Install bash (macOS only)
if: matrix.os == 'macos-latest'
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-scripts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0 # Full history for diff checks

Expand Down
Loading