Skip to content

Commit 966b8ba

Browse files
authored
Merge pull request #976 from scipopt/update-actions
update github actions
2 parents e52b08d + edc7ec0 commit 966b8ba

6 files changed

+11
-11
lines changed

.github/workflows/build_wheels.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
strategy:
2727
matrix:
2828
include:
29-
- os: ubuntu-20.04
29+
- os: ubuntu-22.04
3030
arch: x86_64
3131
- os: macos-14
3232
arch: arm64
@@ -55,7 +55,7 @@ jobs:
5555

5656
build_sdist:
5757
name: Build source distribution
58-
runs-on: ubuntu-latest
58+
runs-on: ubuntu-22.04
5959
steps:
6060
- uses: actions/checkout@v4
6161

@@ -71,14 +71,14 @@ jobs:
7171
merge_artifacts:
7272
name: Merge Artifacts
7373
needs: [build_wheels, build_sdist]
74-
runs-on: ubuntu-latest
74+
runs-on: ubuntu-22.04
7575
steps:
7676
- name: Merge Artifacts
7777
uses: actions/upload-artifact/merge@v4
7878

7979
upload_pypi:
8080
needs: [build_wheels, build_sdist, merge_artifacts]
81-
runs-on: ubuntu-latest
81+
runs-on: ubuntu-22.04
8282
if: github.event.inputs.upload_to_pypi == 'true'
8383
steps:
8484
- uses: actions/download-artifact@v4

.github/workflows/coverage.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
jobs:
1414

1515
test-coverage:
16-
runs-on: ubuntu-20.04
16+
runs-on: ubuntu-22.04
1717
strategy:
1818
fail-fast: true
1919
matrix:

.github/workflows/generate_docs.yml

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

77
jobs:
88
generate-documentation:
9-
runs-on: ubuntu-20.04
9+
runs-on: ubuntu-22.04
1010
steps:
1111
- uses: actions/checkout@v3
1212

.github/workflows/integration-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
jobs:
1414

1515
Integration-test:
16-
runs-on: ubuntu-20.04
16+
runs-on: ubuntu-22.04
1717
strategy:
1818
fail-fast: true
1919
matrix:

.github/workflows/test-release.yml

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

1212
jobs:
1313
deploy-packges-and-generate-documentation:
14-
runs-on: ubuntu-20.04
14+
runs-on: ubuntu-22.04
1515
steps:
1616
- uses: actions/checkout@v3
1717

.github/workflows/update-packages-and-documentation.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
jobs:
1414

1515
check-tag:
16-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-22.04
1717
steps:
1818
- name: check tag ${{ github.ref }}
1919
run: |
@@ -28,7 +28,7 @@ jobs:
2828
2929
release-integration-test:
3030
needs: check-tag
31-
runs-on: ubuntu-20.04
31+
runs-on: ubuntu-22.04
3232
strategy:
3333
fail-fast: true
3434
matrix:
@@ -100,7 +100,7 @@ jobs:
100100
101101
deploy-packages-and-generate-documentation:
102102
needs: Windows-test
103-
runs-on: ubuntu-20.04
103+
runs-on: ubuntu-22.04
104104
steps:
105105
- uses: actions/checkout@v3
106106

0 commit comments

Comments
 (0)