浏览代码

pipeline: upgrade runner from ubuntu v20.04 to v24.04

Fabian Peter Hammerle 2 周之前
父节点
当前提交
1ba7db3147
共有 1 个文件被更改,包括 4 次插入4 次删除
  1. 4 4
      .github/workflows/python.yml

+ 4 - 4
.github/workflows/python.yml

@@ -12,7 +12,7 @@ on:
 
 jobs:
   code-format:
-    runs-on: ubuntu-20.04
+    runs-on: ubuntu-24.04
     strategy:
       matrix:
         python-version: ['3.11']
@@ -30,7 +30,7 @@ jobs:
     - run: pipenv graph
     - run: pipenv run black --check .
   tests:
-    runs-on: ubuntu-20.04
+    runs-on: ubuntu-24.04
     strategy:
       matrix:
         python-version:
@@ -73,7 +73,7 @@ jobs:
     - run: pipenv run pylint tests
     - run: pipenv run mypy "$(cat *.egg-info/top_level.txt)" tests
   install:
-    runs-on: ubuntu-20.04
+    runs-on: ubuntu-24.04
     steps:
     - uses: actions/checkout@v4
     - uses: actions/setup-python@v5
@@ -84,7 +84,7 @@ jobs:
     - run: pip install dist/*.whl
     - run: ical2vdir --help
   check-links:
-    runs-on: ubuntu-20.04
+    runs-on: ubuntu-24.04
     strategy:
       matrix:
         python-version: ['3.9']