- Updated runs-on from gitea-runner to debian across all workflow files - Changed audit.yml, ci-cd.yml, ci.yml, fix.yml, security-scanning.yml, and test.yml - Updated cli-level1-tests.yml from gitea-runner to debian - Fixed audit.yml workflow name from 'gitea-runnername' to 'debianname' - Standardizes runner configuration to use debian label
17 lines
204 B
YAML
17 lines
204 B
YAML
debianname: audit
|
|
|
|
on:
|
|
push:
|
|
|
|
jobs:
|
|
audit:
|
|
runs-on: debian
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- run: npm install
|
|
|
|
- name: Audit dependencies
|
|
run: npm audit || true
|