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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
os: [ubuntu-latest, windows-latest, macos-latest]

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: actions/setup-python@v6
with:
Expand All @@ -44,7 +44,7 @@ jobs:
name: PowerShell syntax check
runs-on: windows-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Validate all .ps1 files parse without errors
shell: pwsh
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
name: Windows install script dry-run
runs-on: windows-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: actions/setup-python@v6
with:
Expand All @@ -94,7 +94,7 @@ jobs:
name: Build sdist + wheel
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: actions/setup-python@v6
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
name: Create release if version changed
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0 # full history for auto-generated release notes

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/upstream-watch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: actions/setup-node@v6
with:
Expand All @@ -45,7 +45,7 @@ jobs:

- name: Restore last-checked cache
id: cache
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: .github/cache
key: upstream-version-${{ steps.ver.outputs.version }}
Expand Down
Loading