Skip to content

Commit 36d43a3

Browse files
committed
ci: remove references to Intel GitHub Actions runners
Remove conditional logic for Intel runners since the repo has moved to ossf. All workflows now use 'ubuntu-latest' directly. Fixes #5452 Signed-off-by: Jack <[email protected]> Signed-off-by: Jack Lau <[email protected]>
1 parent b605e46 commit 36d43a3

15 files changed

+19
-20
lines changed

.github/workflows/build-wheel.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
build:
1212
name: Build wheel
13-
runs-on: ${{ github.repository_owner == 'intel' && 'intel-ubuntu-latest' || 'ubuntu-latest' }}
13+
runs-on: ubuntu-latest
1414
permissions:
1515
id-token: write
1616
attestations: write
@@ -20,7 +20,7 @@ jobs:
2020
matrix:
2121
python-version:
2222
- "3.12"
23-
if: github.repository == 'intel/cve-bin-tool' # run on origin repo only
23+
if: github.repository == 'ossf/cve-bin-tool' # run on origin repo only
2424
steps:
2525
- name: Harden Runner
2626
uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ permissions:
2626
jobs:
2727
analyze:
2828
name: Analyze
29-
runs-on: ${{ github.repository_owner == 'intel' && 'intel-ubuntu-latest' || 'ubuntu-latest' }}
29+
runs-on: ubuntu-latest
3030
permissions:
3131
actions: read
3232
contents: read

.github/workflows/coverity.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ permissions:
1111

1212
jobs:
1313
coverity:
14-
runs-on: ${{ github.repository_owner == 'intel' && 'intel-ubuntu-latest' || 'ubuntu-latest' }}
14+
runs-on: ubuntu-latest
1515
steps:
1616
- name: Harden Runner
1717
uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0

.github/workflows/cve_scan.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ permissions:
1212
jobs:
1313
cve_scan:
1414
name: CVE scan on dependencies
15-
# runs-on: ${{ github.repository_owner == 'intel' && 'intel-ubuntu-latest' || 'ubuntu-latest' }}
16-
runs-on: 'ubuntu-latest'
15+
runs-on: ubuntu-latest
1716
timeout-minutes: 60
1817
steps:
1918
- name: Harden Runner

.github/workflows/dependency-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ permissions:
1414

1515
jobs:
1616
dependency-review:
17-
runs-on: ${{ github.repository_owner == 'intel' && 'intel-ubuntu-latest' || 'ubuntu-latest' }}
17+
runs-on: ubuntu-latest
1818
steps:
1919
- name: Harden Runner
2020
uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0

.github/workflows/formatting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
contents: write # for peter-evans/create-pull-request to create branch
1717
pull-requests: write # for peter-evans/create-pull-request to create a PR
1818
name: Update checkers table
19-
runs-on: ${{ github.repository_owner == 'intel' && 'intel-ubuntu-latest' || 'ubuntu-latest' }}
19+
runs-on: ubuntu-latest
2020
steps:
2121
- name: Harden Runner
2222
uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0

.github/workflows/fuzzing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permissions:
1212
jobs:
1313
fuzzing:
1414
name: Fuzzing
15-
runs-on: ${{ github.repository_owner == 'intel' && 'intel-ubuntu-latest' || 'ubuntu-latest' }}
15+
runs-on: ubuntu-latest
1616
if: github.event.repository.fork == false
1717
steps:
1818
- name: Check out code

.github/workflows/linting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permissions:
1212
jobs:
1313
linting:
1414
name: Linting
15-
runs-on: ${{ github.repository_owner == 'intel' && 'intel-ubuntu-latest' || 'ubuntu-latest' }}
15+
runs-on: ubuntu-latest
1616
strategy:
1717
fail-fast: false
1818
matrix:

.github/workflows/sbom.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ jobs:
1515
contents: write # for peter-evans/create-pull-request to create branch
1616
pull-requests: write # for peter-evans/create-pull-request to create a PR
1717
name: Generate SBOM
18-
if: github.repository == 'intel/cve-bin-tool' # for SBOM generation on forks
19-
runs-on: ${{ github.repository_owner == 'intel' && 'intel-ubuntu-latest' || 'ubuntu-latest' }}
18+
if: github.repository == 'ossf/cve-bin-tool' # for SBOM generation on forks
19+
runs-on: ubuntu-latest
2020
strategy:
2121
matrix:
2222
python: ['3.9', '3.10', '3.11', '3.12', '3.13']

.github/workflows/spelling.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
contents: read
1313
pull-requests: write
1414
actions: read
15-
runs-on: ${{ github.repository_owner == 'intel' && 'intel-ubuntu-latest' || 'ubuntu-latest' }}
15+
runs-on: ubuntu-latest
1616
steps:
1717
- name: Harden Runner
1818
uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0

0 commit comments

Comments
 (0)