Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

⬆️ Updates ubuntu to v24 #2379

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/backport.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Backport

Check warning on line 1 in .github/workflows/backport.yml

View workflow job for this annotation

GitHub Actions / cspell

Unknown word (Backport)
on:
pull_request:
types:
Expand All @@ -6,11 +6,11 @@
- labeled

jobs:
backport:

Check warning on line 9 in .github/workflows/backport.yml

View workflow job for this annotation

GitHub Actions / cspell

Unknown word (backport)
runs-on: ubuntu-18.04
runs-on: ubuntu-24.04
name: Backport

Check warning on line 11 in .github/workflows/backport.yml

View workflow job for this annotation

GitHub Actions / cspell

Unknown word (Backport)
steps:
- name: Backport

Check warning on line 13 in .github/workflows/backport.yml

View workflow job for this annotation

GitHub Actions / cspell

Unknown word (Backport)
uses: tibdex/backport@v1

Check warning on line 14 in .github/workflows/backport.yml

View workflow job for this annotation

GitHub Actions / cspell

Unknown word (tibdex)

Check warning on line 14 in .github/workflows/backport.yml

View workflow job for this annotation

GitHub Actions / cspell

Unknown word (backport)
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/closing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,22 @@

jobs:
issueClosed:
runs-on: ubuntu-18.04
runs-on: ubuntu-24.04
steps:
- name: Add closed question comment
uses: peter-evans/create-or-update-comment@v1
if: "(contains(github.event.issue.labels.*.name, 'question') && ! contains(github.event.issue.labels.*.name, 'wontfix')) || join(github.event.issue.labels.*.name) == ''"

Check warning on line 14 in .github/workflows/closing.yml

View workflow job for this annotation

GitHub Actions / cspell

Unknown word (wontfix)
with:
token: ${{ secrets.GITHUB_TOKEN }}
issue-number: ${{ github.event.issue.number }}
body: |
The issue you have reported is resolved now. If you don’t feel it’s right, please follow it’s labels to get a clue and take further steps.
* In case you see a similar problem, please open a separate issue.
* If you are happy with the outcome, don’t hesitate to support Weblate by making a [donation](https://ko-fi.com/alexrogalskiy).

Check warning on line 21 in .github/workflows/closing.yml

View workflow job for this annotation

GitHub Actions / cspell

Unknown word (Weblate)

- name: Add closed issue comment
uses: peter-evans/create-or-update-comment@v1
if: "! contains(github.event.issue.labels.*.name, 'invalid') && ! contains(github.event.issue.labels.*.name, 'question') && ! contains(github.event.issue.labels.*.name, 'wontfix') && ! contains(github.event.issue.labels.*.name, 'duplicate') && ! contains(github.event.issue.labels.*.name, 'undecided') && ! contains(github.event.issue.labels.*.name, 'needinfo') && join(github.event.issue.labels.*.name) != ''"

Check warning on line 25 in .github/workflows/closing.yml

View workflow job for this annotation

GitHub Actions / cspell

Unknown word (wontfix)

Check warning on line 25 in .github/workflows/closing.yml

View workflow job for this annotation

GitHub Actions / cspell

Unknown word (needinfo)
with:
token: ${{ secrets.GITHUB_TOKEN }}
issue-number: ${{ github.event.issue.number }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/label-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
jobs:
build:
name: Sync labels
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- uses: actions/[email protected]
- uses: micnncim/action-label-syncer@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull_requests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
weblate_automerge:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
name: Weblate automerge
if: github.actor == 'weblate' || github.actor == 'pre-commit-ci[bot]'
steps:
Expand Down
Loading