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
11 changes: 11 additions & 0 deletions .github/actionlint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# actionlint configuration for this repository.
#
# We use Depot-managed GitHub Actions runners (depot-*) instead of GitHub-hosted
# runners. actionlint does not know custom runner labels by default, so we must
# explicitly allow them here.
#
# Docs: https://github.com/rhysd/actionlint/blob/main/docs/config.md
self-hosted-runner:
labels:
- depot-ubuntu-24.04
- depot-ubuntu-24.04-8
20 changes: 13 additions & 7 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ permissions:
jobs:
changes:
name: Detect changed paths
runs-on: ubuntu-latest
runs-on: depot-ubuntu-24.04
permissions:
contents: read
pull-requests: read
Expand Down Expand Up @@ -56,6 +56,8 @@ jobs:
- '.golangci.yaml'
workflows:
- '.github/workflows/**'
- '.github/actionlint.yaml'
- '.github/actionlint.yml'
publish:
- '**/*.go'
- 'go.mod'
Expand All @@ -67,7 +69,8 @@ jobs:
lint:
needs: changes
if: github.event_name == 'merge_group' || needs.changes.outputs.go == 'true'
runs-on: ubuntu-latest
runs-on: depot-ubuntu-24.04-8
timeout-minutes: 20
steps:
- name: Checkout
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
Expand Down Expand Up @@ -104,7 +107,8 @@ jobs:
test:
needs: changes
if: github.event_name == 'merge_group' || needs.changes.outputs.go == 'true'
runs-on: ubuntu-latest
runs-on: depot-ubuntu-24.04-8
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
Expand Down Expand Up @@ -145,7 +149,8 @@ jobs:
name: E2E Smoke (Kind)
needs: [changes, test]
if: needs.changes.outputs.go == 'true'
runs-on: ubuntu-latest
runs-on: depot-ubuntu-24.04-8
timeout-minutes: 45
steps:
- name: Checkout
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
Expand Down Expand Up @@ -205,7 +210,7 @@ jobs:
name: Lint GitHub Actions
needs: changes
if: github.event_name == 'merge_group' || needs.changes.outputs.workflows == 'true'
runs-on: ubuntu-latest
runs-on: depot-ubuntu-24.04
permissions:
contents: read
steps:
Expand Down Expand Up @@ -233,7 +238,7 @@ jobs:
codex-comments:
name: Codex Comments
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
runs-on: depot-ubuntu-24.04
permissions:
contents: read
pull-requests: read
Expand Down Expand Up @@ -261,7 +266,8 @@ jobs:
(needs.lint.result == 'success' || needs.lint.result == 'skipped') &&
(needs.lint-actions.result == 'success' || needs.lint-actions.result == 'skipped') &&
(needs.e2e-kind.result == 'success' || needs.e2e-kind.result == 'skipped')
runs-on: ubuntu-latest
runs-on: depot-ubuntu-24.04-8
timeout-minutes: 30
permissions:
contents: read
packages: write
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ permissions:

jobs:
goreleaser:
runs-on: ubuntu-latest
runs-on: depot-ubuntu-24.04-8
timeout-minutes: 60
steps:
- name: Checkout
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
Expand Down