Skip to content

Commit ab44915

Browse files
author
Tyler Titsworth
authoredJun 11, 2024
Revert codeql-fix (#123)
Signed-off-by: Tyler Titsworth <tyler.titsworth@intel.com>
1 parent 1b54496 commit ab44915

File tree

1 file changed

+14
-10
lines changed

1 file changed

+14
-10
lines changed
 

‎.github/workflows/container-ci.yaml

+14-10
Original file line numberDiff line numberDiff line change
@@ -150,11 +150,11 @@ jobs:
150150
needs: [setup-scan]
151151
if: ${{ !inputs.no_build }}
152152
runs-on: k8-runners
153-
permissions:
154-
actions: read
155-
packages: read
156-
pull-requests: write
157-
security-events: write
153+
# permissions:
154+
# actions: read
155+
# packages: read
156+
# pull-requests: write
157+
# security-events: write
158158
strategy:
159159
matrix:
160160
container: ${{ fromJSON(needs.setup-scan.outputs.matrix) }}
@@ -178,11 +178,15 @@ jobs:
178178
- name: Cleanup
179179
if: always()
180180
run: docker rmi -f ${{ secrets.REGISTRY }}/${{ secrets.REPO }}:${{ matrix.container }}
181-
- uses: github/codeql-action/upload-sarif@2e230e8fe0ad3a14a340ad0815ddb96d599d2aff # v3.25.8
182-
with:
183-
sarif_file: '${{ matrix.container }}-scan.sarif'
184-
category: '${{ matrix.container }}'
185-
continue-on-error: true
181+
- uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
182+
with:
183+
name: ${{ matrix.container }}-scan
184+
path: ${{ matrix.container }}-scan.sarif
185+
# - uses: github/codeql-action/upload-sarif@2e230e8fe0ad3a14a340ad0815ddb96d599d2aff # v3.25.8
186+
# with:
187+
# sarif_file: '${{ matrix.container }}-scan.sarif'
188+
# category: '${{ matrix.container }}'
189+
# continue-on-error: true
186190
####################################################################################################
187191
# Generic Test Runner
188192
####################################################################################################

0 commit comments

Comments
 (0)