Skip to content

Commit cb63779

Browse files
authored
chore(actions): update runners to ubuntu-22.04 (#28)
1 parent cd965e2 commit cb63779

File tree

4 files changed

+10
-12
lines changed

4 files changed

+10
-12
lines changed

.github/workflows/merge_main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
prepare:
1212
name: Calculate Version and Build Number
13-
runs-on: ubuntu-20.04
13+
runs-on: ubuntu-22.04
1414

1515
outputs:
1616
build_number: ${{ steps.build_number.outputs.value }}
@@ -45,7 +45,7 @@ jobs:
4545
if: needs.prepare.outputs.new_release == 'true'
4646

4747
name: Generates Prerelease
48-
runs-on: ubuntu-20.04
48+
runs-on: ubuntu-22.04
4949

5050
needs:
5151
- prepare
@@ -66,7 +66,7 @@ jobs:
6666
if: needs.prepare.outputs.new_release == 'true'
6767

6868
name: Draft Release
69-
runs-on: ubuntu-20.04
69+
runs-on: ubuntu-22.04
7070

7171
needs:
7272
- prepare

.github/workflows/pull_request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ env:
1717
jobs:
1818
cancel_previous:
1919
name: 'Cancel Previous Runs'
20-
runs-on: ubuntu-20.04
20+
runs-on: ubuntu-22.04
2121
timeout-minutes: 3
2222

2323
steps:
@@ -29,7 +29,7 @@ jobs:
2929

3030
validate:
3131
name: Validate
32-
runs-on: ubuntu-20.04
32+
runs-on: ubuntu-22.04
3333

3434
steps:
3535
- uses: actions/checkout@v3

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
jobs:
1313
prepare:
1414
name: Prepare
15-
runs-on: ubuntu-20.04
15+
runs-on: ubuntu-22.04
1616

1717
outputs:
1818
version: ${{ steps.version.outputs.value }}
@@ -25,7 +25,7 @@ jobs:
2525

2626
build-packages:
2727
name: Build ${{ matrix.package }} package
28-
runs-on: ubuntu-20.04
28+
runs-on: ubuntu-22.04
2929

3030
strategy:
3131
matrix:
@@ -68,7 +68,7 @@ jobs:
6868

6969
# update-dockerfiles:
7070
# name: Create pull request to update dockerfiles
71-
# runs-on: ubuntu-20.04
71+
# runs-on: ubuntu-22.04
7272

7373
# needs:
7474
# - prepare
@@ -117,7 +117,7 @@ jobs:
117117

118118
# update-integration-tool:
119119
# name: Create pull request to update integration tool
120-
# runs-on: ubuntu-20.04
120+
# runs-on: ubuntu-22.04
121121

122122
# needs:
123123
# - prepare

.github/workflows/sonarqube.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,7 @@ on:
1212
jobs:
1313
sonarqube:
1414
name: SonarQube
15-
runs-on:
16-
- self-hosted
17-
- micro
15+
runs-on: ubuntu-22.04
1816

1917
steps:
2018
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)