diff --git a/.github/actionlint.yaml b/.github/actionlint.yaml index 05ca3b0..9261d80 100644 --- a/.github/actionlint.yaml +++ b/.github/actionlint.yaml @@ -1,3 +1,2 @@ self-hosted-runner: - labels: - - runners-privilegedescalation + labels: [] diff --git a/.github/workflows/ci-health-check.yaml b/.github/workflows/ci-health-check.yaml index c3deaea..e5d75c1 100644 --- a/.github/workflows/ci-health-check.yaml +++ b/.github/workflows/ci-health-check.yaml @@ -7,7 +7,7 @@ on: jobs: health-check: - runs-on: runners-privilegedescalation + runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v6 diff --git a/.github/workflows/detect-pr-pipeline.yaml b/.github/workflows/detect-pr-pipeline.yaml index 74f4cf3..a97aab2 100644 --- a/.github/workflows/detect-pr-pipeline.yaml +++ b/.github/workflows/detect-pr-pipeline.yaml @@ -11,7 +11,7 @@ permissions: jobs: test-detection-logic: - runs-on: runners-privilegedescalation + runs-on: ubuntu-latest timeout-minutes: 2 steps: - name: Checkout @@ -21,7 +21,7 @@ jobs: run: bash scripts/test-detect-pipeline.sh detect-pipeline: - runs-on: runners-privilegedescalation + runs-on: ubuntu-latest timeout-minutes: 5 outputs: pipeline-type: ${{ steps.detect.outputs.pipeline-type }} diff --git a/.github/workflows/plugin-ci.yaml b/.github/workflows/plugin-ci.yaml index c9b53af..6a075b9 100644 --- a/.github/workflows/plugin-ci.yaml +++ b/.github/workflows/plugin-ci.yaml @@ -11,7 +11,7 @@ on: jobs: ci: - runs-on: runners-privilegedescalation + runs-on: ubuntu-latest timeout-minutes: 10 steps: diff --git a/.github/workflows/plugin-release.yaml b/.github/workflows/plugin-release.yaml index 2372925..754e470 100644 --- a/.github/workflows/plugin-release.yaml +++ b/.github/workflows/plugin-release.yaml @@ -35,7 +35,7 @@ concurrency: jobs: check-secrets: - runs-on: runners-privilegedescalation + runs-on: ubuntu-latest outputs: ready: ${{ steps.check.outputs.ready }} steps: @@ -61,7 +61,7 @@ jobs: check-token-permissions: needs: check-secrets if: needs.check-secrets.outputs.ready == 'true' - runs-on: runners-privilegedescalation + runs-on: ubuntu-latest outputs: has_write: ${{ steps.check.outputs.has_write }} steps: @@ -101,7 +101,7 @@ jobs: check-tag: needs: check-secrets if: needs.check-secrets.outputs.ready == 'true' - runs-on: runners-privilegedescalation + runs-on: ubuntu-latest outputs: skip: ${{ steps.check.outputs.skip }} steps: @@ -121,7 +121,7 @@ jobs: release: needs: [ci, check-tag, check-secrets, check-token-permissions] if: needs.check-secrets.outputs.ready == 'true' && needs.check-tag.outputs.skip != 'true' && needs.check-token-permissions.outputs.has_write == 'true' - runs-on: runners-privilegedescalation + runs-on: ubuntu-latest timeout-minutes: 10 steps: diff --git a/.github/workflows/pr-validation.yaml b/.github/workflows/pr-validation.yaml index ee0e1d1..becaea5 100644 --- a/.github/workflows/pr-validation.yaml +++ b/.github/workflows/pr-validation.yaml @@ -6,7 +6,7 @@ on: jobs: validate: - runs-on: runners-privilegedescalation + runs-on: ubuntu-latest timeout-minutes: 5 steps: