Skip to content

Commit

Permalink
🔧 moving to ubuntu-24.04 runners
Browse files Browse the repository at this point in the history
  • Loading branch information
chrede88 committed Nov 7, 2024
1 parent 915a50a commit b1573f7
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/auto-merge.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ permissions:

jobs:
enable-auto-merge:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04

if: github.event.pull_request.user.login == 'bb-17[bot]' && contains(github.event.pull_request.labels.*.name, 'auto-merge')
steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/label_maker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ permissions:
jobs:
labeler:
name: Labeler
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Labeler
uses: actions/labeler@v5
with:
configuration-path: .github/labeler.yaml
configuration-path: .github/labeler.yaml
2 changes: 1 addition & 1 deletion .github/workflows/renovate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ env:
jobs:
renovate:
name: Renovate
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Generate Token
uses: actions/create-github-app-token@v1
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
name: 'Close stale issues and PRs'
name: "Close stale issues and PRs"
on:
schedule:
- cron: '30 1 * * *'
- cron: "30 1 * * *"

jobs:
stale:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/stale@v9
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: |
This issue is stale because it has not had any recent activity. The resources of the project maintainers are limited, and so we are asking for your help.
If you are still experiencing this issue, please review the issue history and add a reply with any requested and/or additional information in order to keep the issue open.
This issue will automatically close in 10 days if no further activity occurs. Thank you for your contributions.
Expand All @@ -28,5 +28,5 @@ jobs:
days-before-close: 10
stale-issue-label: stale
stale-pr-label: stale
exempt-issue-labels: 'keep'
exempt-pr-labels: 'keep'
exempt-issue-labels: "keep"
exempt-pr-labels: "keep"
6 changes: 3 additions & 3 deletions .github/workflows/sync_labels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ permissions:

jobs:
labels:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04

steps:
- name: checkout
uses: actions/checkout@v4

- name:
- name:
uses: EndBug/label-sync@v2
with:
config-file: .github/labels.yaml
delete-other-labels: true
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit b1573f7

Please sign in to comment.