Skip to content

Commit d326faf

Browse files
committed
Move CI to ubuntu-latest
1 parent a5ac297 commit d326faf

File tree

2 files changed

+6
-10
lines changed

2 files changed

+6
-10
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
build:
1111
if: ${{ github.event.pull_request.head.repo.full_name == github.repository || github.event_name == 'push' }}
12-
runs-on: ubuntu-22.04
12+
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout main repository
1515
uses: actions/checkout@v3
@@ -24,11 +24,9 @@ jobs:
2424
repository: polybiusproxy/p3_binaries
2525
token: ${{ secrets.BINARY_ACCESS_TOKEN }}
2626
path: iso
27-
27+
2828
- name: Setup Python
2929
uses: actions/setup-python@v4
30-
with:
31-
python-version: "3.10"
3230

3331
- name: Upgrade pip
3432
run: python3 -m pip install --upgrade pip setuptools wheel
@@ -54,7 +52,7 @@ jobs:
5452

5553
- name: Compile
5654
run: ninja
57-
55+
5856
- name: Upload progress report
5957
uses: actions/upload-artifact@v4
6058
with:

.github/workflows/build_pr.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
build:
99
if: ${{ github.event.pull_request.head.repo.full_name != github.repository }}
10-
runs-on: ubuntu-22.04
10+
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout main repository
1313
uses: actions/checkout@v3
@@ -20,11 +20,9 @@ jobs:
2020
repository: polybiusproxy/p3_binaries
2121
token: ${{ secrets.BINARY_ACCESS_TOKEN }}
2222
path: iso
23-
23+
2424
- name: Setup Python
2525
uses: actions/setup-python@v4
26-
with:
27-
python-version: "3.10"
2826

2927
- name: Upgrade pip
3028
run: python3 -m pip install --upgrade pip setuptools wheel
@@ -50,7 +48,7 @@ jobs:
5048

5149
- name: Compile
5250
run: ninja
53-
51+
5452
- name: Upload progress report
5553
uses: actions/upload-artifact@v4
5654
with:

0 commit comments

Comments
 (0)