Skip to content
Closed
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
4 changes: 2 additions & 2 deletions .github/workflows/check-manual-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
check-outcome: ${{ steps.check.outcome }}

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Check versions of manually managed dependencies
id: check
# We want to be able to react, if the check fails due to a new version.
Expand All @@ -28,7 +28,7 @@ jobs:
if: ${{ needs.check-dependencies.outputs.check-outcome == 'failure' }}

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
ssh-key: ${{ secrets.NEW_PULL_REQUEST_KEY }}

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
# Clone all history to ensure goreleaser can create proper changelog.
fetch-depth: 0
Expand Down Expand Up @@ -147,7 +147,7 @@ jobs:
runs-on: windows-latest
needs: [ release ]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Choco Install curl
uses: crazy-max/ghaction-chocolatey@v3
Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:
runs-on: macos-latest
needs: [ release ]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Setup
run: "brew install powershell"

Expand Down Expand Up @@ -226,7 +226,7 @@ jobs:
runs-on: ubuntu-latest
needs: [ release ]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest

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

- name: Setup
run: |
Expand Down