From 01963db4143cb3240b5a66e0ce773516536aa3a8 Mon Sep 17 00:00:00 2001 From: "Tab Atkins Jr." Date: Thu, 21 Nov 2024 15:10:08 -0800 Subject: [PATCH 1/3] Update example Ubuntu version so recent Bikesheds can run. Ubuntu 20 shipped with Python 3.8, which limits Bikeshed to a version from Nov 2023. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b4944db..c9ae63c 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ on: jobs: main: name: Build, Validate and Deploy - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: w3c/spec-prod@v2 From 2ead72cc5d7a11ff50d375f47dc1aaceda376906 Mon Sep 17 00:00:00 2001 From: "Tab Atkins Jr." Date: Thu, 21 Nov 2024 15:12:26 -0800 Subject: [PATCH 2/3] More ubuntu-latest fixing --- docs/examples.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/examples.md b/docs/examples.md index 98f4cb0..10830dc 100644 --- a/docs/examples.md +++ b/docs/examples.md @@ -12,7 +12,7 @@ on: jobs: main: name: Build and Validate - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: w3c/spec-prod@v2 @@ -30,7 +30,7 @@ on: jobs: main: name: Build and Validate - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: w3c/spec-prod@v2 @@ -51,7 +51,7 @@ on: jobs: main: name: Build and Validate - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: w3c/spec-prod@v2 @@ -76,7 +76,7 @@ on: jobs: main: name: Build, Validate and Deploy - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest permissions: contents: write steps: @@ -99,7 +99,7 @@ on: jobs: main: name: Deploy to GitHub pages - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest permissions: contents: write steps: @@ -125,7 +125,7 @@ on: jobs: main: name: Build, Validate and Deploy - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: w3c/spec-prod@v2 @@ -147,7 +147,7 @@ on: jobs: main: name: Build, Validate and Deploy - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: w3c/spec-prod@v2 @@ -177,7 +177,7 @@ on: jobs: main: name: Build, Validate and Deploy - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest permissions: contents: write strategy: @@ -225,7 +225,7 @@ on: jobs: main: name: Build, Validate and Deploy - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest permissions: contents: write steps: @@ -250,7 +250,7 @@ on: jobs: main: name: Build, Validate and Deploy - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest permissions: contents: write steps: From 7051abc339bb2276bac70402b1fcec3ac75ec69f Mon Sep 17 00:00:00 2001 From: Sid Vishnoi <8426945+sidvishnoi@users.noreply.github.com> Date: Fri, 22 Nov 2024 14:21:23 +0530 Subject: [PATCH 3/3] Update docs/README.md --- docs/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/README.md b/docs/README.md index 5fc9aa0..07177b8 100644 --- a/docs/README.md +++ b/docs/README.md @@ -20,7 +20,7 @@ To get started, do the following: jobs: validate-and-publish: name: Validate and Publish to TR - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: w3c/spec-prod@v2