Skip to content

Commit 0249c66

Browse files
committed
downgrade ubuntu
1 parent a98e5a3 commit 0249c66

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/actions/init-python-env/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ runs:
4141
shell: bash
4242
run: |
4343
sudo apt-get update
44-
sudo apt-get install python${{ inputs.python_version }}-distutils -y
44+
sudo apt-get install python3-setuptools -y
4545
4646
- name: Install Poetry project dependencies
4747
# if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
jobs:
1414

1515
build-scala:
16-
runs-on: ubuntu-24.04
16+
runs-on: ubuntu-22.04
1717

1818
strategy:
1919
matrix:
@@ -60,7 +60,7 @@ jobs:
6060
build-python:
6161
# scala/* branches are not supposed to change python code, trust them
6262
if: ${{ !startsWith(github.event.inputs.from_branch, 'scala/') }}
63-
runs-on: ubuntu-24.04
63+
runs-on: ubuntu-22.04
6464
needs: build-scala
6565

6666
strategy:
@@ -102,7 +102,7 @@ jobs:
102102
publish-scala:
103103
name: Publish Scala Artifacts
104104
needs: [ build-scala, build-python ]
105-
runs-on: ubuntu-24.04
105+
runs-on: ubuntu-22.04
106106
if: (github.event_name != 'pull_request') && startsWith(github.ref, 'refs/tags/v')
107107

108108
strategy:
@@ -144,7 +144,7 @@ jobs:
144144
publish-python:
145145
name: Publish Scala Artifacts
146146
needs: [ publish-scala ]
147-
runs-on: ubuntu-24.04
147+
runs-on: ubuntu-22.04
148148
if: (github.event_name != 'pull_request') && startsWith(github.ref, 'refs/tags/v')
149149

150150
strategy:

.github/workflows/docs.yml

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

1414
jobs:
1515
docs:
16-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-22.04
1717
container:
1818
image: s22s/debian-openjdk-conda-gdal:6790f8d
1919

0 commit comments

Comments
 (0)