Skip to content

Commit d96155b

Browse files
committed
Meta: update repository files
See https://github.com/whatwg/spec-factory for details.
1 parent c319ffe commit d96155b

4 files changed

Lines changed: 11 additions & 7 deletions

File tree

File renamed without changes.
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
<!--
22
Thank you for contributing to the Encoding Standard! Please describe the change you are making and complete the checklist below if your change is not editorial.
3-
When editing this comment after the PR is created, check that PR-Preview doesn't overwrite your changes.
3+
4+
When you submit this PR, and each time you edit this comment (including checking a checkbox through the UI!), PR Preview will run and update it. As such make any edits in one go and only after PR Preview has run.
5+
46
If you think your PR is ready to land, please double-check that the build is passing and the checklist is complete before pinging.
57
-->
68

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ on:
1212
jobs:
1313
build:
1414
name: Build
15-
runs-on: ubuntu-22.04
15+
runs-on: ubuntu-24.04
1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v6
1818
with:
1919
fetch-depth: 2
20-
- uses: actions/setup-python@v4
20+
- uses: actions/setup-python@v6
2121
with:
22-
python-version: "3.11"
22+
python-version: "3.14"
2323
- run: pip install bikeshed && bikeshed update
2424
# Note: `make deploy` will do a deploy dry run on PRs.
2525
- run: make deploy

Makefile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,15 @@ SHELL=/bin/bash -o pipefail
22
.PHONY: local remote deploy
33

44
remote: encoding.bs
5-
@ (HTTP_STATUS=$$(curl https://api.csswg.org/bikeshed/ \
5+
@ (HTTP_STATUS=$$(curl https://www.w3.org/publications/spec-generator/ \
66
--output encoding.html \
77
--write-out "%{http_code}" \
88
--header "Accept: text/plain, text/html" \
99
-F die-on=warning \
1010
-F md-Text-Macro="COMMIT-SHA LOCAL COPY" \
11-
-F file=@encoding.bs) && \
11+
-F file=@encoding.bs \
12+
-F type=bikeshed-spec \
13+
-F output=html) && \
1214
[[ "$$HTTP_STATUS" -eq "200" ]]) || ( \
1315
echo ""; cat encoding.html; echo ""; \
1416
rm -f encoding.html; \

0 commit comments

Comments
 (0)