Skip to content

Commit 362be38

Browse files
author
Tyler Titsworth
authored
Update container-ci.yaml
Signed-off-by: Tyler Titsworth <tyler.titsworth@intel.com>
1 parent b9b3730 commit 362be38

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/container-ci.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
setup-build:
6464
outputs:
6565
matrix: ${{ steps.build-matrix.outputs.matrix }}
66-
runs-on: ${{ github.repository_owner == 'intel' && 'intel-ubuntu-latest' || 'ubuntu-latest' }}
66+
runs-on: ubuntu-latest # ${{ github.repository_owner == 'intel' && 'intel-ubuntu-latest' || 'ubuntu-latest' }}
6767
steps:
6868
- name: Harden Runner
6969
uses: step-security/harden-runner@17d0e2bd7d51742c71671bd19fa12bdc9d40a3d6 # v2.8.1
@@ -79,7 +79,7 @@ jobs:
7979
build-containers:
8080
needs: [setup-build]
8181
env: ${{ matrix }}
82-
runs-on: ${{ github.repository_owner == 'intel' && 'intel-ubuntu-latest' || 'ubuntu-latest' }}
82+
runs-on: ubuntu-latest # ${{ github.repository_owner == 'intel' && 'intel-ubuntu-latest' || 'ubuntu-latest' }}
8383
strategy:
8484
matrix: ${{ fromJson(needs.setup-build.outputs.matrix) }}
8585
fail-fast: false
@@ -111,7 +111,7 @@ jobs:
111111
setup-scan:
112112
needs: [build-containers]
113113
if: ${{ github.event_name == 'pull_request' }}
114-
runs-on: ${{ github.repository_owner == 'intel' && 'intel-ubuntu-latest' || 'ubuntu-latest' }}
114+
runs-on: ubuntu-latest # ${{ github.repository_owner == 'intel' && 'intel-ubuntu-latest' || 'ubuntu-latest' }}
115115
outputs:
116116
matrix: ${{ steps.scan-matrix.outputs.matrix }}
117117
steps:
@@ -128,7 +128,7 @@ jobs:
128128
scan-containers:
129129
needs: [setup-scan]
130130
if: ${{ !inputs.no_build && github.event_name == 'pull_request' }}
131-
runs-on: ${{ github.repository_owner == 'intel' && 'intel-ubuntu-latest' || 'ubuntu-latest' }}
131+
runs-on: ubuntu-latest # ${{ github.repository_owner == 'intel' && 'intel-ubuntu-latest' || 'ubuntu-latest' }}
132132
strategy:
133133
matrix:
134134
container: ${{ fromJSON(needs.setup-scan.outputs.matrix) }}
@@ -164,7 +164,7 @@ jobs:
164164
####################################################################################################
165165
setup-test:
166166
needs: [build-containers]
167-
runs-on: ${{ github.repository_owner == 'intel' && 'intel-ubuntu-latest' || 'ubuntu-latest' }}
167+
runs-on: ubuntu-latest # ${{ github.repository_owner == 'intel' && 'intel-ubuntu-latest' || 'ubuntu-latest' }}
168168
outputs:
169169
matrix: ${{ steps.test-matrix.outputs.matrix }}
170170
steps:

0 commit comments

Comments
 (0)