@@ -8,7 +8,7 @@ permissions: {} # No permissions by default on workflow level
88jobs :
99 collect-packages-names :
1010 name : Generate SBOM with Syft
11- runs-on : ubuntu-latest
11+ runs-on : ${{ github.repository_owner == 'open-edge-platform' && 'overflow' || ' ubuntu-latest' }}
1212 permissions :
1313 contents : read
1414 strategy :
@@ -59,14 +59,14 @@ jobs:
5959 ] | unique[]' > pkg_list_$DEVICE.txt
6060
6161 - name : Upload packages list
62- uses : actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
62+ uses : actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
6363 with :
6464 name : pkg_list_${{ matrix.ai-device }}
6565 path : pkg_list_*
6666 retention-days : 5
6767
6868 get-unique-names :
69- runs-on : ubuntu-latest
69+ runs-on : ${{ github.repository_owner == 'open-edge-platform' && 'overflow' || ' ubuntu-latest' }}
7070 needs :
7171 - collect-packages-names
7272 outputs :
@@ -94,10 +94,10 @@ jobs:
9494 echo "unique_package_names_oneline=$(cat unique_package_names_oneline.txt)" >> $GITHUB_OUTPUT
9595
9696 collect-source-code :
97- runs-on : ubuntu-latest
97+ runs-on : ${{ github.repository_owner == 'open-edge-platform' && 'overflow' || ' ubuntu-latest' }}
9898 needs : get-unique-names
9999 container :
100- image : debian:bookworm-slim@sha256:f06537653ac770703bc45b4b113475bd402f451e85223f0f2837acbf89ab020a
100+ image : debian:bookworm-slim@sha256:4724b8cc51e33e398f0e2e15e18d5ec2851ff0c2280647e1310bc1642182655d
101101 steps :
102102 - name : Add apt sources for deb-src
103103 shell : bash
@@ -134,7 +134,7 @@ jobs:
134134 tar -czf "$ARCHIVE_NAME" -C "$OUTPUT_DIR" .
135135
136136 - name : Upload source code archive
137- uses : actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
137+ uses : actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
138138 with :
139139 name : source-code-archive
140140 path : source_code.tar.gz
0 commit comments