Skip to content

Commit 4b65d15

Browse files
authored
fix ubuntu worker (#305)
* fix the broken CI (tagging an unexisting worker)
1 parent 267f277 commit 4b65d15

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/docker.yml

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

1414
jobs:
1515
docker:
16-
runs-on: ubuntu-lts-latest
16+
runs-on: ubuntu-latest
1717
steps:
1818
-
1919
name: Set up QEMU

.github/workflows/examples.yml

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

99
jobs:
1010
build:
11-
runs-on: ubuntu-lts-latest
11+
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
1414
python-version: ["3.11"]

.github/workflows/gallery.yml

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

88
jobs:
99
build:
10-
runs-on: ubuntu-lts-latest
10+
runs-on: ubuntu-latest
1111
container: inseefrlab/pynsee:latest
1212
steps:
1313
- uses: actions/checkout@v6

.github/workflows/pkgTests.yml

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

88
jobs:
99
build:
10-
runs-on: ubuntu-lts-latest
10+
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
1313
python-version: ["3.10", "3.14"]

.github/workflows/pkgTests_pull_requests.yml

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

88
jobs:
99
build:
10-
runs-on: ubuntu-lts-latest
10+
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
1313
python-version: ["3.10", "3.14"]

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
jobs:
1515
build_wheels:
1616
name: Build wheel and source dist
17-
runs-on: ubuntu-lts-latest
17+
runs-on: ubuntu-latest
1818

1919
steps:
2020
- uses: actions/checkout@v6
@@ -36,7 +36,7 @@ jobs:
3636
publish:
3737
name: Publish on GitHub and PyPI
3838
needs: [build_wheels]
39-
runs-on: ubuntu-lts-latest
39+
runs-on: ubuntu-latest
4040
# release on every tag
4141
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v')
4242

0 commit comments

Comments
 (0)