Skip to content

Commit f5818f7

Browse files
fix(.github): change runs-on value from ubuntu-latest to ubuntu-22.04 (autowarefoundation#9080)
fix(.github): change value from to Signed-off-by: Kasunori-Nakajima <kazunori.nakajima@tier4.jp>
1 parent dbcf7aa commit f5818f7

22 files changed

+24
-24
lines changed

.github/workflows/build-and-test-differential.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575

7676
clang-tidy-differential:
7777
needs: build-and-test-differential
78-
runs-on: ubuntu-latest
78+
runs-on: ubuntu-22.04
7979
container: ghcr.io/autowarefoundation/autoware:latest-autoware-universe-cuda
8080
steps:
8181
- name: Set PR fetch depth

.github/workflows/cancel-previous-workflows.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55

66
jobs:
77
cancel-previous-workflows:
8-
runs-on: ubuntu-latest
8+
runs-on: ubuntu-22.04
99
steps:
1010
- name: Cancel previous runs
1111
uses: styfle/cancel-workflow-action@0.12.1

.github/workflows/check-build-depends.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
check-build-depends:
10-
runs-on: ubuntu-latest
10+
runs-on: ubuntu-22.04
1111
container: ${{ matrix.container }}
1212
strategy:
1313
fail-fast: false

.github/workflows/clang-tidy-pr-comments-manually.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
required: true
99
jobs:
1010
clang-tidy-pr-comments-manually:
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-22.04
1212
steps:
1313
- name: Check out repository
1414
uses: actions/checkout@v3

.github/workflows/clang-tidy-pr-comments.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
clang-tidy-pr-comments:
1212
if: ${{ github.event.workflow_run.event == 'pull_request' && contains(fromJson('["success", "failure"]'), github.event.workflow_run.conclusion) }}
13-
runs-on: ubuntu-latest
13+
runs-on: ubuntu-22.04
1414
steps:
1515
- name: Check out repository
1616
uses: actions/checkout@v3

.github/workflows/comment-on-pr.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44

55
jobs:
66
comment-on-pr:
7-
runs-on: ubuntu-latest
7+
runs-on: ubuntu-22.04
88
permissions:
99
pull-requests: write
1010
steps:

.github/workflows/cppcheck-differential.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55

66
jobs:
77
cppcheck-differential:
8-
runs-on: ubuntu-latest
8+
runs-on: ubuntu-22.04
99

1010
steps:
1111
- name: Set PR fetch depth

.github/workflows/cppcheck-weekly.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
cppcheck-weekly:
10-
runs-on: ubuntu-latest
10+
runs-on: ubuntu-22.04
1111

1212
steps:
1313
- name: Checkout code

.github/workflows/dco.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
pull_request:
55
jobs:
66
dco:
7-
runs-on: ubuntu-latest
7+
runs-on: ubuntu-22.04
88
steps:
99
- uses: actions/checkout@v4
1010

.github/workflows/delete-closed-pr-docs.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
delete-closed-pr-docs:
10-
runs-on: ubuntu-latest
10+
runs-on: ubuntu-22.04
1111
steps:
1212
- name: Check out repository
1313
uses: actions/checkout@v3

.github/workflows/deploy-docs.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
deploy-docs:
2828
needs: prevent-no-label-execution
2929
if: ${{ needs.prevent-no-label-execution.outputs.run == 'true' }}
30-
runs-on: ubuntu-latest
30+
runs-on: ubuntu-22.04
3131
steps:
3232
- name: Check out repository
3333
uses: actions/checkout@v3

.github/workflows/github-release.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515

1616
jobs:
1717
github-release:
18-
runs-on: ubuntu-latest
18+
runs-on: ubuntu-22.04
1919
steps:
2020
- name: Set tag name
2121
id: set-tag-name

.github/workflows/json-schema-check.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
check-if-relevant-files-changed:
9-
runs-on: ubuntu-latest
9+
runs-on: ubuntu-22.04
1010
outputs:
1111
run-check: ${{ steps.paths_filter.outputs.json_or_yaml }}
1212
steps:
@@ -22,7 +22,7 @@ jobs:
2222
json-schema-check:
2323
needs: check-if-relevant-files-changed
2424
if: needs.check-if-relevant-files-changed.outputs.run-check == 'true'
25-
runs-on: ubuntu-latest
25+
runs-on: ubuntu-22.04
2626
steps:
2727
- name: Check out repository
2828
uses: actions/checkout@v4
@@ -33,7 +33,7 @@ jobs:
3333
no-relevant-changes:
3434
needs: check-if-relevant-files-changed
3535
if: needs.check-if-relevant-files-changed.outputs.run-check == 'false'
36-
runs-on: ubuntu-latest
36+
runs-on: ubuntu-22.04
3737
steps:
3838
- name: Dummy step
3939
run: echo "No relevant changes, passing check"

.github/workflows/pr-agent.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
pr_agent_job:
1414
needs: prevent-no-label-execution-pr-agent
1515
if: ${{ needs.prevent-no-label-execution-pr-agent.outputs.run == 'true' }}
16-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-22.04
1717
permissions:
1818
issues: write
1919
pull-requests: write

.github/workflows/pr-labeler.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
label:
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-22.04
1212
steps:
1313
- uses: actions/labeler@v4
1414
with:

.github/workflows/pre-commit-autoupdate.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
pre-commit-autoupdate:
1515
needs: check-secret
1616
if: ${{ needs.check-secret.outputs.set == 'true' }}
17-
runs-on: ubuntu-latest
17+
runs-on: ubuntu-22.04
1818
steps:
1919
- name: Generate token
2020
id: generate-token

.github/workflows/pre-commit-optional.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55

66
jobs:
77
pre-commit-optional:
8-
runs-on: ubuntu-latest
8+
runs-on: ubuntu-22.04
99
steps:
1010
- name: Check out repository
1111
uses: actions/checkout@v4

.github/workflows/pre-commit.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
jobs:
77
pre-commit:
88
if: ${{ github.event.repository.private }} # Use pre-commit.ci for public repositories
9-
runs-on: ubuntu-latest
9+
runs-on: ubuntu-22.04
1010
steps:
1111
- name: Generate token
1212
id: generate-token

.github/workflows/spell-check-daily.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
spell-check-daily:
10-
runs-on: ubuntu-latest
10+
runs-on: ubuntu-22.04
1111
steps:
1212
- name: Check out repository
1313
uses: actions/checkout@v4

.github/workflows/spell-check-differential.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55

66
jobs:
77
spell-check-differential:
8-
runs-on: ubuntu-latest
8+
runs-on: ubuntu-22.04
99
steps:
1010
- name: Check out repository
1111
uses: actions/checkout@v4

.github/workflows/sync-files.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
sync-files:
1515
needs: check-secret
1616
if: ${{ needs.check-secret.outputs.set == 'true' }}
17-
runs-on: ubuntu-latest
17+
runs-on: ubuntu-22.04
1818
steps:
1919
- name: Generate token
2020
id: generate-token

.github/workflows/update-codeowners-from-packages.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
update-codeowners-from-packages:
1515
needs: check-secret
1616
if: ${{ needs.check-secret.outputs.set == 'true' }}
17-
runs-on: ubuntu-latest
17+
runs-on: ubuntu-22.04
1818
steps:
1919
- name: Generate token
2020
id: generate-token

0 commit comments

Comments
 (0)