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
6 changes: 3 additions & 3 deletions .github/workflows/cleanup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
stale:
runs-on: ubuntu-latest
runs-on: ubuntu-slim
Copy link

Copilot AI Jan 26, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR title indicates "Change Dependabot runner from ubuntu-latest to ubuntu-slim", but this file is a cleanup/maintenance workflow, not a Dependabot-related workflow. The title should be updated to reflect that multiple workflows are being changed, or the scope of changes should be limited to only the Dependabot workflow as suggested by the title.

Copilot uses AI. Check for mistakes.
Copy link

Copilot AI Jan 26, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The runner label 'ubuntu-slim' is not a valid GitHub Actions hosted runner. GitHub Actions provides 'ubuntu-latest', 'ubuntu-22.04', and 'ubuntu-20.04', but not 'ubuntu-slim'. This will cause workflow runs to fail with an error indicating that no runner matching this label could be found. Unless 'ubuntu-slim' is a self-hosted runner configured in this repository's settings (which appears unlikely based on the lack of documentation), this should be reverted to 'ubuntu-latest' or changed to another valid hosted runner label.

Copilot uses AI. Check for mistakes.
name: 'Close Stale PRs'
permissions:
contents: write
Expand All @@ -22,7 +22,7 @@ jobs:


workflows:
runs-on: ubuntu-latest
runs-on: ubuntu-slim
Copy link

Copilot AI Jan 26, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The runner label 'ubuntu-slim' is not a valid GitHub Actions hosted runner. GitHub Actions provides 'ubuntu-latest', 'ubuntu-22.04', and 'ubuntu-20.04', but not 'ubuntu-slim'. This will cause workflow runs to fail with an error indicating that no runner matching this label could be found. Unless 'ubuntu-slim' is a self-hosted runner configured in this repository's settings (which appears unlikely based on the lack of documentation), this should be reverted to 'ubuntu-latest' or changed to another valid hosted runner label.

Copilot uses AI. Check for mistakes.
name: 'Cleanup old workflow runs'
permissions:
actions: write
Expand All @@ -38,7 +38,7 @@ jobs:

dockercleanup:
name: 'Pruning Untagged Images'
runs-on: ubuntu-latest
runs-on: ubuntu-slim
Copy link

Copilot AI Jan 26, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The runner label 'ubuntu-slim' is not a valid GitHub Actions hosted runner. GitHub Actions provides 'ubuntu-latest', 'ubuntu-22.04', and 'ubuntu-20.04', but not 'ubuntu-slim'. This will cause workflow runs to fail with an error indicating that no runner matching this label could be found. Unless 'ubuntu-slim' is a self-hosted runner configured in this repository's settings (which appears unlikely based on the lack of documentation), this should be reverted to 'ubuntu-latest' or changed to another valid hosted runner label.

Copilot uses AI. Check for mistakes.
permissions:
packages: write
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ permissions:

jobs:
dependabot:
runs-on: ubuntu-latest
runs-on: ubuntu-slim
Copy link

Copilot AI Jan 26, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The runner label 'ubuntu-slim' is not a valid GitHub Actions hosted runner. GitHub Actions provides 'ubuntu-latest', 'ubuntu-22.04', and 'ubuntu-20.04', but not 'ubuntu-slim'. This will cause workflow runs to fail with an error indicating that no runner matching this label could be found. Unless 'ubuntu-slim' is a self-hosted runner configured in this repository's settings (which appears unlikely based on the lack of documentation), this should be reverted to 'ubuntu-latest' or changed to another valid hosted runner label.

Suggested change
runs-on: ubuntu-slim
runs-on: ubuntu-latest

Copilot uses AI. Check for mistakes.
if: github.event.pull_request.user.login == 'dependabot[bot]' && github.repository == 'Tailormap/tailormap-api'
steps:
- name: 'Fetch Dependabot metadata'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/renovate-configvalidator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:

jobs:
renovate-validator:
runs-on: ubuntu-latest
runs-on: ubuntu-slim
Copy link

Copilot AI Jan 26, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The runner label 'ubuntu-slim' is not a valid GitHub Actions hosted runner. GitHub Actions provides 'ubuntu-latest', 'ubuntu-22.04', and 'ubuntu-20.04', but not 'ubuntu-slim'. This will cause workflow runs to fail with an error indicating that no runner matching this label could be found. Unless 'ubuntu-slim' is a self-hosted runner configured in this repository's settings (which appears unlikely based on the lack of documentation), this should be reverted to 'ubuntu-latest' or changed to another valid hosted runner label.

Suggested change
runs-on: ubuntu-slim
runs-on: ubuntu-latest

Copilot uses AI. Check for mistakes.
Copy link

Copilot AI Jan 26, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR title indicates "Change Dependabot runner from ubuntu-latest to ubuntu-slim", but this file is the Renovate config validator workflow, not a Dependabot-related workflow. The title should be updated to reflect that multiple workflows are being changed, or the scope of changes should be limited to only the Dependabot workflow as suggested by the title.

Copilot uses AI. Check for mistakes.
steps:
- name: 'Checkout'
uses: actions/checkout@v6
Expand Down
Loading