Skip to content

Commit 4f7fad3

Browse files
authored
Use latest Ubuntu version for GitHub deploy workflow (#757)
Our deploy workflow was failing because it was using an older version of Ubuntu (which in turn had an older version of Python). Update our YML configuration to use the latest version. I considered pinning to a newer version but this matches both our other workflows and the w3c/spec-prod repo [1] so seems like a better choice. [1] https://github.com/w3c/spec-prod/blob/main/.github/workflows/docs.yml
1 parent ffb10bc commit 4f7fad3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
main:
2424
name: Build, Validate, and Deploy
2525
# The type of runner that the job will run on
26-
runs-on: ubuntu-20.04
26+
runs-on: ubuntu-latest
2727

2828
strategy:
2929
matrix:

0 commit comments

Comments
 (0)