diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 352b334..745c2b7 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -18,7 +18,7 @@ permissions: pull-requests: write jobs: publish: - runs-on: ubuntu-latest + runs-on: ubuntu-slim if: github.event_name == 'workflow_dispatch' || (startsWith(github.event.pull_request.head.ref, 'release/') && github.event.pull_request.merged) steps: - uses: actions/checkout@v6 diff --git a/.github/workflows/tagbot.yml b/.github/workflows/tagbot.yml index c72561f..1a4f467 100644 --- a/.github/workflows/tagbot.yml +++ b/.github/workflows/tagbot.yml @@ -11,7 +11,7 @@ on: jobs: TagBot: if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot' - runs-on: ubuntu-latest + runs-on: ubuntu-slim steps: - uses: JuliaRegistries/TagBot@v1 with: diff --git a/.github/workflows/web.yml b/.github/workflows/web.yml index 2e9f362..3a22313 100644 --- a/.github/workflows/web.yml +++ b/.github/workflows/web.yml @@ -19,7 +19,7 @@ on: - '.github/workflows/web.yml' jobs: check: - runs-on: ubuntu-latest + runs-on: ubuntu-slim steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 diff --git a/README.md b/README.md index 90c54ff..b43b4bc 100644 --- a/README.md +++ b/README.md @@ -298,7 +298,7 @@ With the removal of the lookback time window, TagBot now checks all package vers ```yml jobs: TagBot: - runs-on: ubuntu-latest + runs-on: ubuntu-slim env: TAGBOT_MAX_PRS_TO_CHECK: 500 # Increase limit if needed steps: diff --git a/example.yml b/example.yml index ab9b6d1..6a384cb 100644 --- a/example.yml +++ b/example.yml @@ -11,7 +11,7 @@ on: jobs: TagBot: if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot' - runs-on: ubuntu-latest + runs-on: ubuntu-slim steps: - uses: JuliaRegistries/TagBot@v1 with: