Skip to content

Commit 2f1731e

Browse files
committed
Update GitHub action script
1 parent bcbfcdf commit 2f1731e

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/compile.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,20 @@ on: [push, pull_request]
55

66
jobs:
77
deploy:
8-
runs-on: ubuntu-22.04
8+
runs-on: ubuntu-24.04
99
name: Build and deploy to gh-pages
10-
if: ${{ github.repository == 'w3c/w3process' && github.event_name == 'push' }}
10+
if: ${{ github.repository == 'w3c/process' && github.event_name == 'push' }}
1111
env:
1212
GITHUB_TOKEN: ${{ secrets.W3CGRUNTBOT_TOKEN }}
1313
GH_BRANCH: ${{ github.head_ref }}
1414
GH_EVENT_NUMBER: ${{ github.event.number }}
1515
steps:
1616
- name: Checkout the repository
1717
uses: actions/checkout@v2
18-
- name: Setup python 3.10
18+
- name: Setup python 3.12
1919
uses: actions/setup-python@v2
2020
with:
21-
python-version: "3.10"
21+
python-version: "3.12"
2222
architecture: x64
2323
- name: Install bikeshed
2424
run: |
@@ -29,16 +29,16 @@ jobs:
2929
run: ./deploy.sh
3030
shell: bash
3131
build:
32-
runs-on: ubuntu-22.04
32+
runs-on: ubuntu-24.04
3333
name: Check that the Process builds cleanly
34-
if: ${{ github.repository != 'w3c/w3process' || github.event_name == 'pull_request' }}
34+
if: ${{ github.repository != 'w3c/process' || github.event_name == 'pull_request' }}
3535
steps:
3636
- name: Checkout the repository
3737
uses: actions/checkout@v2
38-
- name: Setup python 3.10
38+
- name: Setup python 3.12
3939
uses: actions/setup-python@v2
4040
with:
41-
python-version: "3.10"
41+
python-version: "3.12"
4242
architecture: x64
4343
- name: Install bikeshed
4444
run: |

0 commit comments

Comments
 (0)