Skip to content

Commit 8e3892f

Browse files
authored
Update GitHub Actions runners to Ubuntu 22.04 (#125)
1 parent de2f37e commit 8e3892f

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
build:
3131
name: Build Client
32-
runs-on: ubuntu-20.04
32+
runs-on: ubuntu-22.04
3333
if: ${{ github.event.repository.fork == false }}
3434
steps:
3535
- name: Checkout Repository
@@ -71,7 +71,7 @@ jobs:
7171

7272
release:
7373
name: Release
74-
runs-on: ubuntu-20.04
74+
runs-on: ubuntu-22.04
7575
if: ${{ startsWith(github.ref, 'refs/tags/') }}
7676
needs: build
7777
steps:

.github/workflows/dependabot-auto-merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ permissions:
55
contents: write
66
jobs:
77
dependabot:
8-
runs-on: ubuntu-20.04
8+
runs-on: ubuntu-22.04
99
if: ${{ github.event.pull_request.user.login == 'dependabot[bot]' }}
1010
steps:
1111
- name: Dependabot metadata

.github/workflows/fossa.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
scan:
1313
name: Fossa
14-
runs-on: ubuntu-20.04
14+
runs-on: ubuntu-22.04
1515
steps:
1616
- name: Checkout Repository
1717
uses: actions/checkout@v3

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
lint:
2222
name: Lint
23-
runs-on: ubuntu-20.04
23+
runs-on: ubuntu-22.04
2424
steps:
2525
- name: Checkout Repository
2626
uses: actions/checkout@v3

.github/workflows/notifications.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313

1414
jobs:
1515
on-failure:
16-
runs-on: ubuntu-20.04
16+
runs-on: ubuntu-22.04
1717
if: ${{ github.event.workflow_run.conclusion == 'failure' }}
1818
steps:
1919
- name: Data

.github/workflows/release-drafter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
update_release_draft:
12-
runs-on: ubuntu-20.04
12+
runs-on: ubuntu-22.04
1313
steps:
1414
- uses: release-drafter/release-drafter@v5
1515
env:

.github/workflows/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55

66
jobs:
77
stale:
8-
runs-on: ubuntu-20.04
8+
runs-on: ubuntu-22.04
99
steps:
1010
- uses: actions/stale@v6
1111
with:

0 commit comments

Comments
 (0)