diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ab5fa1f..0899e78 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ on: jobs: lint: name: Lint - runs-on: ferrlabs-k8s + runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 - name: ShellCheck @@ -23,7 +23,7 @@ jobs: test: name: Test - runs-on: ferrlabs-k8s + runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 - name: Install bats @@ -34,7 +34,7 @@ jobs: release: name: Release needs: [lint, test] - runs-on: ferrlabs-k8s + runs-on: ubuntu-latest if: (github.event_name == 'push' && github.ref == 'refs/heads/main') || github.event_name == 'workflow_dispatch' permissions: contents: write @@ -64,7 +64,7 @@ jobs: benchmark: name: Benchmark needs: [lint, test] - runs-on: ferrlabs-k8s + runs-on: ubuntu-latest if: (github.event_name == 'push' && github.ref == 'refs/heads/main') || github.event_name == 'workflow_dispatch' steps: - uses: actions/checkout@v6 @@ -110,7 +110,7 @@ jobs: update-release: name: Update release with benchmarks needs: [release, benchmark] - runs-on: ferrlabs-k8s + runs-on: ubuntu-latest if: needs.release.outputs.tag != '' permissions: contents: write diff --git a/.github/workflows/scorecard.yml b/.github/workflows/scorecard.yml index 0fda736..f0cacd3 100644 --- a/.github/workflows/scorecard.yml +++ b/.github/workflows/scorecard.yml @@ -13,7 +13,7 @@ permissions: read-all jobs: analysis: name: Scorecard analysis - runs-on: ferrlabs-k8s + runs-on: ubuntu-latest permissions: # Required for publishing results to the GitHub code scanning dashboard. security-events: write