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
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
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:
fetch-depth: 0
ref: main
Expand All @@ -54,7 +54,7 @@ jobs:
outputs:
version: ${{ needs.tag.outputs.version }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Create GitHub release
env:
Expand All @@ -78,7 +78,7 @@ jobs:
asset: scip-go-darwin-arm64
runs-on: ${{ matrix.runner }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
ref: v${{ needs.create-release.outputs.version }}
- uses: DeterminateSystems/nix-installer-action@v22
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
arch: arm64
runs-on: ${{ matrix.runner }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
ref: v${{ needs.create-release.outputs.version }}
- uses: DeterminateSystems/nix-installer-action@v22
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
permissions:
packages: write
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
ref: v${{ needs.create-release.outputs.version }}

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: DeterminateSystems/nix-installer-action@v22
with:
summarize: false
Expand All @@ -34,7 +34,7 @@ jobs:
- runner: ubuntu-24.04-arm
runs-on: ${{ matrix.runner }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: DeterminateSystems/nix-installer-action@v22
with:
summarize: false
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
echo "$GITHUB_WORKSPACE/scip-go-bin" >> "$GITHUB_PATH"

- name: Checkout target repo
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: ${{ matrix.repo }}
ref: ${{ matrix.ref }}
Expand Down Expand Up @@ -174,7 +174,7 @@ jobs:
fingerprint-sync:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: actions/setup-go@v6
with:
go-version: stable
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-vendor-hash.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
app-id: ${{ vars.RENOVATE_FIX_APP_ID }}
private-key: ${{ secrets.RENOVATE_FIX_APP_PRIVATE_KEY }}

- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
ref: ${{ github.event.pull_request.head.ref }}
token: ${{ steps.app-token.outputs.token }}
Expand Down
Loading