diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index bb31d3391..70d96cc0c 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -6,6 +6,7 @@ name: "CodeQL Security Scan" on: + workflow_dispatch: push: branches: # only run when there are pushes to the main branch (not on PRs) diff --git a/.github/workflows/dependabot-automation.yaml b/.github/workflows/dependabot-automation.yaml index 680395e1d..1c3ded297 100644 --- a/.github/workflows/dependabot-automation.yaml +++ b/.github/workflows/dependabot-automation.yaml @@ -7,5 +7,4 @@ permissions: jobs: run: - # Runner definition: workflows/.github/runs-on.yml uses: anchore/workflows/.github/workflows/dependabot-automation.yaml@main diff --git a/.github/workflows/oss-project-board-add.yaml b/.github/workflows/oss-project-board-add.yaml index a1ed69d61..0472de8e5 100644 --- a/.github/workflows/oss-project-board-add.yaml +++ b/.github/workflows/oss-project-board-add.yaml @@ -13,7 +13,6 @@ on: jobs: run: - # Runner definition: workflows/.github/runs-on.yml uses: "anchore/workflows/.github/workflows/oss-project-board-add.yaml@main" secrets: token: ${{ secrets.OSS_PROJECT_GH_TOKEN }} diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 3795ed67f..6246cc54f 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -192,7 +192,6 @@ jobs: release-install-script: needs: [release] if: ${{ needs.release.result == 'success' }} - # Runner definition: workflows/.github/runs-on.yml uses: "anchore/workflows/.github/workflows/release-install-script.yaml@main" with: tag: ${{ github.event.inputs.version }} diff --git a/.github/workflows/remove-awaiting-response-label.yaml b/.github/workflows/remove-awaiting-response-label.yaml index 13204ad5f..cb27571ef 100644 --- a/.github/workflows/remove-awaiting-response-label.yaml +++ b/.github/workflows/remove-awaiting-response-label.yaml @@ -10,7 +10,6 @@ jobs: contents: read issues: write pull-requests: write - # Runner definition: workflows/.github/runs-on.yml uses: "anchore/workflows/.github/workflows/remove-awaiting-response-label.yaml@main" secrets: token: ${{ secrets.OSS_PROJECT_GH_TOKEN }} diff --git a/.github/workflows/test-fixture-cache-publish.yaml b/.github/workflows/test-fixture-cache-publish.yaml index 8c7d421bd..e76fe6963 100644 --- a/.github/workflows/test-fixture-cache-publish.yaml +++ b/.github/workflows/test-fixture-cache-publish.yaml @@ -15,7 +15,7 @@ jobs: name: "Publish test fixture image cache" # we use this runner to get enough storage space for docker images and fixture cache # Runner definition: workflows/.github/runs-on.yml - runs-on: runs-on=${{ github.run_id }}/runner=release + runs-on: runs-on=${{ github.run_id }}/runner=build/disk=large if: github.repository == 'anchore/syft' # only run for main repo permissions: packages: write diff --git a/.github/workflows/validate-github-actions.yaml b/.github/workflows/validate-github-actions.yaml index f9aecb6e6..fa2286cd1 100644 --- a/.github/workflows/validate-github-actions.yaml +++ b/.github/workflows/validate-github-actions.yaml @@ -1,6 +1,7 @@ name: "Validate GitHub Actions" on: + workflow_dispatch: pull_request: paths: - '.github/workflows/**'