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.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
private-key: ${{ secrets.RENOVATE_FIX_APP_PRIVATE_KEY }}

- if: steps.filter.outputs.relevant == 'true'
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ github.event.pull_request.head.ref }}
# Pushing under the App identity (not GITHUB_TOKEN) makes
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
checks: ${{ steps.checks.outputs.result }}
packages: ${{ steps.packages.outputs.result }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: DeterminateSystems/nix-installer-action@v22
- id: checks
run: |
Expand All @@ -145,7 +145,7 @@ jobs:
matrix:
check: ${{ fromJSON(needs.list.outputs.checks) }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: DeterminateSystems/nix-installer-action@v22
- uses: DeterminateSystems/magic-nix-cache-action@v14
with:
Expand All @@ -159,7 +159,7 @@ jobs:
matrix:
package: ${{ fromJSON(needs.list.outputs.packages) }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: DeterminateSystems/nix-installer-action@v22
- uses: DeterminateSystems/magic-nix-cache-action@v14
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/jvm-bindings.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: actions/setup-java@v5
with:
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
outputs:
version: ${{ steps.resolve.outputs.version }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
ref: main
- id: resolve
Expand All @@ -34,7 +34,7 @@ jobs:
outputs:
version: ${{ needs.setup.outputs.version }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
ref: main

Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
needs: publish
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
ref: v${{ needs.publish.outputs.version }}
- uses: DeterminateSystems/nix-installer-action@v22
Expand All @@ -108,7 +108,7 @@ jobs:
needs: publish
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
ref: v${{ needs.publish.outputs.version }}
- uses: DeterminateSystems/nix-installer-action@v22
Expand Down Expand Up @@ -137,7 +137,7 @@ jobs:
# Central) means worst-case ~60 min.
timeout-minutes: 90
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
ref: v${{ needs.publish.outputs.version }}

Expand Down Expand Up @@ -175,7 +175,7 @@ jobs:
contents: read
id-token: write # npm trusted-publishing OIDC
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
ref: v${{ needs.publish.outputs.version }}
- uses: actions/setup-node@v6
Expand Down Expand Up @@ -228,7 +228,7 @@ jobs:
runs-on: ${{ matrix.runner }}

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
ref: v${{ needs.publish.outputs.version }}
- uses: actions/setup-go@v6
Expand Down Expand Up @@ -267,7 +267,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Mark release as non-draft
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scip-examples.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
cancel-in-progress: true
steps:
- name: Checkout ${{ matrix.target.repository }}
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: ${{ matrix.target.repository }}
fetch-depth: 1
Expand Down