Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/actionlint.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
self-hosted-runner:
labels:
- blacksmith-4vcpu-ubuntu-2404

config-variables: null
2 changes: 2 additions & 0 deletions .github/workflow-templates/agent-authorship-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,5 @@ permissions:
jobs:
label:
uses: evalops/.github/.github/workflows/agent-authorship-label.yml@main
with:
runner_label: ubuntu-latest
2 changes: 1 addition & 1 deletion .github/workflows/agent-authorship-label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
description: "Runner label used for the label job"
required: false
type: string
default: blacksmith-4vcpu-ubuntu-2404
default: ubuntu-latest
helper_ref:
description: "evalops/.github ref used to checkout helper scripts"
required: false
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/codeql-guard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
guard-self:
name: Forbid CodeQL in evalops/.github
if: ${{ github.event_name != 'schedule' }}
runs-on: blacksmith-4vcpu-ubuntu-2404
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
guard-org:
name: Sweep evalops/* for CodeQL workflow drift
if: ${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' }}
runs-on: blacksmith-4vcpu-ubuntu-2404
runs-on: ubuntu-latest
timeout-minutes: 15
env:
GH_TOKEN: ${{ github.token }}
Expand Down Expand Up @@ -158,7 +158,7 @@ jobs:
{
echo "## codeql-guard tripped"
echo
echo "EvalOps does not run GitHub CodeQL (see \`SECURITY.md\` and the Blacksmith"
echo "EvalOps does not run GitHub CodeQL (see \`SECURITY.md\` and the org"
echo "code security configuration, which is now \`enforcement: enforced\`)."
echo
if [ "${file_count}" -gt 0 ]; then
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codex-rails-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ on:
description: "Runner label used for the validation job"
required: false
type: string
default: blacksmith-4vcpu-ubuntu-2404
default: ubuntu-latest

permissions:
contents: read

jobs:
validate:
runs-on: ${{ inputs.runner_label || 'blacksmith-4vcpu-ubuntu-2404' }}
runs-on: ${{ inputs.runner_label || 'ubuntu-latest' }}
timeout-minutes: 10
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pysa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
description: "Runner label used for Pysa"
required: false
type: string
default: blacksmith-4vcpu-ubuntu-2404
default: ubuntu-latest
working_directory:
description: "Repository-relative directory to analyze"
required: false
Expand Down
Loading