Skip to content

Commit f997683

Browse files
authored
Update GitHub Actions runners to Ubuntu 22.04 (#275)
1 parent 6e20431 commit f997683

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ on:
2121
jobs:
2222
binary:
2323
name: Build Binary
24-
runs-on: ubuntu-20.04
24+
runs-on: ubuntu-22.04
2525
steps:
2626
- name: Checkout Repository
2727
uses: actions/checkout@v3
@@ -44,7 +44,7 @@ jobs:
4444

4545
unit-tests:
4646
name: Unit Tests
47-
runs-on: ubuntu-20.04
47+
runs-on: ubuntu-22.04
4848
steps:
4949
- name: Checkout Repository
5050
uses: actions/checkout@v3
@@ -58,7 +58,7 @@ jobs:
5858

5959
build:
6060
name: Build Packages
61-
runs-on: ubuntu-20.04
61+
runs-on: ubuntu-22.04
6262
needs: [binary, unit-tests]
6363
steps:
6464
- name: Checkout Repository

.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)