Skip to content

Commit 4f934ed

Browse files
authored
Migrate dco-check and vulnerabilityCatcher to Databricks runners (#1327)
## Summary - Migrate `dco-check.yml` and `vulnerabilityCatcher.yml` from public `ubuntu-latest` runners to `databricks-protected-runner-group` - These were the only 2 workflows (out of 22) still using public GitHub-hosted runners - Ensures consistent runner security posture across all CI workflows NO_CHANGELOG=true ## Test plan - [ ] Verify DCO check workflow triggers correctly on a PR - [ ] Verify weekly security scan workflow runs on the protected runner group This pull request was AI-assisted by Isaac. Signed-off-by: Gopal Lal <gopal.lal@databricks.com>
1 parent 49124d0 commit 4f934ed

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/dco-check.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ on:
77

88
jobs:
99
dco-check:
10-
runs-on: ubuntu-latest
10+
runs-on:
11+
group: databricks-protected-runner-group
12+
labels: linux-ubuntu-latest
1113
name: Check DCO Sign-off
1214
steps:
1315
- name: Checkout

.github/workflows/vulnerabilityCatcher.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ on:
77

88
jobs:
99
security-scan:
10-
runs-on: ubuntu-latest
10+
runs-on:
11+
group: databricks-protected-runner-group
12+
labels: linux-ubuntu-latest
1113

1214
steps:
1315
- name: Checkout repository

0 commit comments

Comments
 (0)