Skip to content

Commit 6d7ffc8

Browse files
committed
Fix: GitHub Actions の ubuntu-20.04 Runner の廃止に対応
1 parent 99e575c commit 6d7ffc8

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ on:
99
jobs:
1010

1111
build-linux:
12-
runs-on: ubuntu-20.04
12+
runs-on: ubuntu-24.04
13+
container:
14+
image: ubuntu:20.04
1315
steps:
1416

1517
- name: Checkout Repository
@@ -54,7 +56,7 @@ jobs:
5456
path: dist/isdb_scanner-*.whl
5557

5658
build-linux-arm:
57-
runs-on: ubuntu-20.04
59+
runs-on: ubuntu-24.04
5860
steps:
5961

6062
- name: Set up QEMU
@@ -117,7 +119,7 @@ jobs:
117119
# build-linux と build-linux-arm のジョブが完了し、かつタグが push されたときのみ実行
118120
release:
119121
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
120-
runs-on: ubuntu-20.04
122+
runs-on: ubuntu-24.04
121123
needs:
122124
- build-linux
123125
- build-linux-arm

0 commit comments

Comments
 (0)