ci: update deprecated GitHub Actions runners

ci: update GitHub Actions runners from ubuntu-20.04 to ubuntu-latest
This commit is contained in:
Kuchizu 2026-01-04 20:38:43 +03:00
commit 783ef4608e
5 changed files with 5 additions and 5 deletions

View file

@ -17,7 +17,7 @@ jobs:
# If pull request was merged then we should check for a package version update
check-for-no-version-changing:
if: github.event.pull_request.merged == true
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
permissions:
actions: write
steps:

View file

@ -17,7 +17,7 @@ jobs:
# If pull request was merged then we should check for a package version update
check-version-changing:
if: github.event.pull_request.merged == true
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
permissions:
actions: write
steps:

View file

@ -8,7 +8,7 @@ jobs:
matrix:
browser: [firefox, chrome, edge]
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v3
with:

View file

@ -5,7 +5,7 @@ on: [pull_request]
jobs:
lint:
name: ESlint
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

View file

@ -7,7 +7,7 @@ on:
jobs:
publish:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
# Checkout to target branch
- uses: actions/checkout@v4