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/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,10 +53,10 @@ 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) }}
# REPO_ACCESS_TOKEN is a fine-grained PAT with read on the private
Expand All @@ -66,7 +66,7 @@ jobs:
- 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 }}
Expand All @@ -80,15 +80,15 @@ jobs:
# to developer machines only. INSTANT_API_REPO is set on the test step
# below so findApiRepoRoot() locates the sibling deterministically.
- name: Checkout api sibling (for cross-repo registry-iterating tests)
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: ${{ vars.API_REPO || format('{0}/api', github.repository_owner) }}
token: ${{ secrets.REPO_ACCESS_TOKEN }}
path: _api_ci
fetch-depth: 1
- run: mv _api_ci ../api

- 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: worker
- 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: worker/go.mod
- uses: github/codeql-action/init@v3
- uses: github/codeql-action/init@v4
with:
languages: go
queries: security-extended
- name: Build
working-directory: worker
run: go build ./...
- uses: github/codeql-action/analyze@v3
- uses: github/codeql-action/analyze@v4
with:
category: "/language:go"
16 changes: 8 additions & 8 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout worker (this repo) into ./worker
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
path: worker

- 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 @@ -74,7 +74,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 @@ -87,7 +87,7 @@ jobs:
# detection to developer machines only. INSTANT_API_REPO is set on the
# test step below so findApiRepoRoot() locates the sibling deterministically.
- name: Checkout api sibling into ./api (for cross-repo registry-iterating tests)
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: ${{ vars.API_REPO || format('{0}/api', github.repository_owner) }}
token: ${{ secrets.REPO_ACCESS_TOKEN }}
Expand All @@ -106,7 +106,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.25'

Expand All @@ -126,10 +126,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 @@ -151,7 +151,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: worker
- 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: worker/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