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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Fail if PR branch is behind its base branch
Expand All @@ -53,25 +53,25 @@ jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Checkout proto sibling (replace ../proto)
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: ${{ vars.PROTO_REPO || format('{0}/proto', github.repository_owner) }}
token: ${{ secrets.REPO_ACCESS_TOKEN }}
path: _proto_ci
- run: mv _proto_ci ../proto

- name: Checkout common sibling (replace ../common)
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: ${{ vars.COMMON_REPO || format('{0}/common', github.repository_owner) }}
token: ${{ secrets.REPO_ACCESS_TOKEN }}
path: _common_ci
- run: mv _common_ci ../common

- uses: actions/setup-go@v5
- uses: actions/setup-go@v6
with:
go-version: '1.24'

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,29 +20,29 @@ jobs:
timeout-minutes: 30
steps:
- name: Checkout this repo
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
path: provisioner
- name: Checkout sibling InstaNode-dev/common
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: InstaNode-dev/common
path: common
- name: Checkout sibling InstaNode-dev/proto
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: InstaNode-dev/proto
path: proto
- uses: actions/setup-go@v5
- uses: actions/setup-go@v6
with:
go-version-file: provisioner/go.mod
- uses: github/codeql-action/init@v3
- uses: github/codeql-action/init@v4
with:
languages: go
queries: security-extended
- name: Build
working-directory: provisioner
run: go build ./...
- uses: github/codeql-action/analyze@v3
- uses: github/codeql-action/analyze@v4
with:
category: "/language:go"
14 changes: 7 additions & 7 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout provisioner (this repo) into ./provisioner
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
path: provisioner

- name: Checkout common sibling into ./common
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: ${{ vars.COMMON_REPO || format('{0}/common', github.repository_owner) }}
# 2026-05-15: GITHUB_TOKEN is scoped to THIS repo only and 404s
Expand All @@ -78,7 +78,7 @@ jobs:
path: common

- name: Checkout proto sibling into ./proto
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: ${{ vars.PROTO_REPO || format('{0}/proto', github.repository_owner) }}
token: ${{ secrets.REPO_ACCESS_TOKEN }}
Expand All @@ -96,7 +96,7 @@ jobs:
echo "Built ${VERSION} (${BUILD_TIME})"

- name: Set up Go (for unit tests + go.mod replace directives)
uses: actions/setup-go@v5
uses: actions/setup-go@v6
with:
go-version: '1.24'

Expand All @@ -109,10 +109,10 @@ jobs:
run: go test ./... -short -count=1

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: Log in to GHCR
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand All @@ -134,7 +134,7 @@ jobs:
.

- name: Set up kubectl
uses: azure/setup-kubectl@v3
uses: azure/setup-kubectl@v5
with:
version: 'latest'

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/govulncheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,20 +17,20 @@ jobs:
timeout-minutes: 15
steps:
- name: Checkout this repo
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
path: provisioner
- name: Checkout sibling InstaNode-dev/common
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: InstaNode-dev/common
path: common
- name: Checkout sibling InstaNode-dev/proto
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: InstaNode-dev/proto
path: proto
- uses: actions/setup-go@v5
- uses: actions/setup-go@v6
with:
go-version-file: provisioner/go.mod
check-latest: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/osv-scanner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ permissions:

jobs:
scan:
uses: google/osv-scanner-action/.github/workflows/osv-scanner-reusable.yml@v2.0.1
uses: google/osv-scanner-action/.github/workflows/osv-scanner-reusable.yml@v2.3.8
permissions:
actions: read
contents: read
Expand Down
Loading