Skip to content

Commit 862deaa

Browse files
committed
Upgrade all workflows to ubuntu-22.04
1 parent 10f534d commit 862deaa

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

.github/workflows/lb-go-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ env:
1212
jobs:
1313
build:
1414
name: Run build
15-
runs-on: [self-hosted, ubuntu-20.04]
15+
runs-on: [self-hosted, ubuntu-22.04]
1616
steps:
1717
- name: Check out Source Repository
1818
uses: actions/checkout@v5

.github/workflows/lb-go-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ env:
1010
jobs:
1111
lint:
1212
name: Run lint
13-
runs-on: [self-hosted, ubuntu-20.04]
13+
runs-on: [self-hosted, ubuntu-22.04]
1414
steps:
1515
- name: Check out Source Repository
1616
uses: actions/checkout@v5

.github/workflows/lb-go-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ env:
1414
jobs:
1515
tests:
1616
name: Run tests
17-
runs-on: [self-hosted, ubuntu-20.04]
17+
runs-on: [self-hosted, ubuntu-22.04]
1818
steps:
1919
- name: Check out Source Repository
2020
uses: actions/checkout@v5

.github/workflows/lb-node-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
workflow_call:
55
jobs:
66
Build:
7-
runs-on: [self-hosted, ubuntu-20.04]
7+
runs-on: [self-hosted, ubuntu-22.04]
88
steps:
99
- name: Check out Source Repository
1010
uses: actions/checkout@v5

.github/workflows/lb-node-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
workflow_call:
55
jobs:
66
Lint:
7-
runs-on: [self-hosted, ubuntu-20.04]
7+
runs-on: [self-hosted, ubuntu-22.04]
88
steps:
99
- name: Check out Source Repository
1010
uses: actions/checkout@v5

.github/workflows/lb-node-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
workflow_call:
55
jobs:
66
Test:
7-
runs-on: [self-hosted, ubuntu-20.04]
7+
runs-on: [self-hosted, ubuntu-22.04]
88
steps:
99
- name: Check out Source Repository
1010
uses: actions/checkout@v5

.github/workflows/lb-py-lint.yml

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

1212
jobs:
1313
format-and-lint:
14-
runs-on: [self-hosted, ubuntu-20.04]
14+
runs-on: [self-hosted, ubuntu-22.04]
1515
name: Lint and Check Formatting
1616
steps:
1717
- name: Check out Source Repository

.github/workflows/lb-py-pdm-lint.yml

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

1212
jobs:
1313
format-and-lint:
14-
runs-on: [self-hosted, ubuntu-20.04]
14+
runs-on: [self-hosted, ubuntu-22.04]
1515
name: Lint and Check Formatting
1616
steps:
1717
- name: Check out Source Repository

.github/workflows/lb-py-tests.yml

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

1818
jobs:
1919
test-and-check-coverage:
20-
runs-on: [self-hosted, ubuntu-20.04]
20+
runs-on: [self-hosted, ubuntu-22.04]
2121
name: Test and Check Coverage
2222
steps:
2323
- name: Check out Source Repository

.github/workflows/lb-scan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
jobs:
66
trivy:
77
name: Run trivy check
8-
runs-on: [self-hosted, ubuntu-20.04]
8+
runs-on: [self-hosted, ubuntu-22.04]
99

1010
steps:
1111
- uses: actions/checkout@v5

0 commit comments

Comments
 (0)