diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 15c9255..bf87ce9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,7 @@ jobs: runs-on: ubuntu-latest if: github.event_name == 'pull_request' steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 - name: Fail if PR branch is behind its base branch @@ -53,7 +53,7 @@ jobs: build-and-test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 # Migration-safety gate (truehomie-db DROP hardening, task D3): any # destructive DDL (DROP TABLE/DATABASE/SCHEMA/COLUMN/ROLE/USER, TRUNCATE, @@ -66,7 +66,7 @@ jobs: bash scripts/check-migration-safety.sh - name: Checkout proto sibling (replace ../proto) - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: ${{ vars.PROTO_REPO || format('{0}/proto', github.repository_owner) }} token: ${{ secrets.REPO_ACCESS_TOKEN || secrets.GITHUB_TOKEN }} @@ -74,7 +74,7 @@ jobs: - run: mv _proto_ci ../proto - name: Checkout common sibling (replace ../common) - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: ${{ vars.COMMON_REPO || format('{0}/common', github.repository_owner) }} token: ${{ secrets.REPO_ACCESS_TOKEN || secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 8c8372a..087f754 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -20,16 +20,16 @@ jobs: timeout-minutes: 30 steps: - name: Checkout this repo - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: path: provisioner - name: Checkout sibling InstaNode-dev/common - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: InstaNode-dev/common path: common - name: Checkout sibling InstaNode-dev/proto - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: InstaNode-dev/proto path: proto diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index d57a2c1..72598a1 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -151,17 +151,17 @@ jobs: TEST_MINIO_BUCKET: itest-bucket steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: path: provisioner # Full history so diff-cover can resolve origin/. fetch-depth: 0 - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: repository: InstaNode-dev/common path: common continue-on-error: true - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: repository: InstaNode-dev/proto path: proto diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 1ed4d9b..1c92718 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -63,12 +63,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout provisioner (this repo) into ./provisioner - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: path: provisioner - name: Checkout common sibling into ./common - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: ${{ vars.COMMON_REPO || format('{0}/common', github.repository_owner) }} # 2026-05-15: GITHUB_TOKEN is scoped to THIS repo only and 404s @@ -78,7 +78,7 @@ jobs: path: common - name: Checkout proto sibling into ./proto - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: ${{ vars.PROTO_REPO || format('{0}/proto', github.repository_owner) }} token: ${{ secrets.REPO_ACCESS_TOKEN || secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index 0d6fa98..c4c8088 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -18,18 +18,18 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 10 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: path: provisioner # Sibling checkouts (proto/common) for repos with replace directives. # No-op for repos that do not need them. - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 if: ${{ hashFiles('provisioner/go.mod') != '' }} with: repository: InstaNode-dev/common path: common continue-on-error: true - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: repository: InstaNode-dev/proto path: proto diff --git a/.github/workflows/govulncheck.yml b/.github/workflows/govulncheck.yml index 906e010..77fe4dd 100644 --- a/.github/workflows/govulncheck.yml +++ b/.github/workflows/govulncheck.yml @@ -17,16 +17,16 @@ jobs: timeout-minutes: 15 steps: - name: Checkout this repo - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: path: provisioner - name: Checkout sibling InstaNode-dev/common - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: InstaNode-dev/common path: common - name: Checkout sibling InstaNode-dev/proto - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: InstaNode-dev/proto path: proto diff --git a/.github/workflows/lychee.yml b/.github/workflows/lychee.yml index 2c07a4d..a9180db 100644 --- a/.github/workflows/lychee.yml +++ b/.github/workflows/lychee.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 5 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: lycheeverse/lychee-action@v2 with: args: --no-progress --max-concurrency 4 --exclude-mail './**/*.md' './**/*.html' diff --git a/.github/workflows/typos.yml b/.github/workflows/typos.yml index 661d167..6f2639a 100644 --- a/.github/workflows/typos.yml +++ b/.github/workflows/typos.yml @@ -14,6 +14,6 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 3 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: crate-ci/typos@v1.47.2 continue-on-error: true # warn-only — surface findings without blocking CI