ee3270ce1c
Covers the "Node.js 20 is deprecated" warning emitted by actions/checkout, actions/setup-node, actions/cache, actions/upload-artifact and actions/download-artifact on their older releases. Every bumped line carries an inline `# kilocode_change` marker since these workflow files are shared with upstream OpenCode. When upstream bumps its own action versions we just drop the markers on merge.
25 lines
675 B
YAML
25 lines
675 B
YAML
name: Check Source Links
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- "packages/kilo-vscode/src/**"
|
|
- "packages/kilo-vscode/webview-ui/**"
|
|
- "packages/opencode/src/**"
|
|
- "packages/kilo-docs/source-links.md"
|
|
- "script/extract-source-links.ts"
|
|
- ".github/workflows/source-check-links.yml"
|
|
workflow_dispatch: # Allow manual trigger
|
|
|
|
jobs:
|
|
source-links-freshness:
|
|
if: github.repository == 'Kilo-Org/kilocode'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6 # kilocode_change
|
|
|
|
- uses: oven-sh/setup-bun@v2
|
|
|
|
- name: Check source-links.md is up to date
|
|
run: bun run script/extract-source-links.ts --check
|