Skip to content

Commit 11d713c

Browse files
committed
Update GitHub Actions to use latest versions of checkout, setup-python, upload-pages-artifact, and deploy-pages
1 parent 214b6c1 commit 11d713c

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/deploy-web.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,17 +34,17 @@ jobs:
3434
build:
3535
runs-on: ubuntu-latest
3636
steps:
37-
- uses: actions/checkout@v4
38-
- uses: actions/setup-python@v5
37+
- uses: actions/checkout@v5
38+
- uses: actions/setup-python@v6
3939
with:
4040
python-version: "3.x"
4141
# CI installs from PyPI (the local ./install.sh uses the apt packages on the
4242
# FPP OS image); both give the same libraries. pillow + pyyaml are needed to
4343
# bake the screenshot annotations (annotations/); without them the build
44-
# silently falls back to un-annotated images.
44+
# fails loudly rather than shipping un-annotated images.
4545
- run: pip install mkdocs-material pillow pyyaml
4646
- run: ./generate-web.sh
47-
- uses: actions/upload-pages-artifact@v3
47+
- uses: actions/upload-pages-artifact@v5
4848
with:
4949
path: web/site
5050

@@ -56,4 +56,4 @@ jobs:
5656
url: ${{ steps.deployment.outputs.page_url }}
5757
steps:
5858
- id: deployment
59-
uses: actions/deploy-pages@v4
59+
uses: actions/deploy-pages@v5

0 commit comments

Comments
 (0)