Skip to content

Commit 9537df9

Browse files
brksipma
authored andcommitted
Bump tagged versions in docs.yaml
The workflow had been failing because it used `actions/upload-pages-artifact@v2` which used `actions/upload-artifact@v3` which was decomissioned on 2025-01-30. See: https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/ This also bumps the tagged versions for other actions in this workflow, with the intention of avoiding future surprises of this sort.
1 parent e4f06e3 commit 9537df9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/docs.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ jobs:
1818
build:
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v3
22-
- uses: ocaml/setup-ocaml@v2
21+
- uses: actions/checkout@v4
22+
- uses: ocaml/setup-ocaml@v3
2323
with:
2424
ocaml-compiler: 4.12.1
2525
- name: Install dependencies with opam
@@ -34,7 +34,7 @@ jobs:
3434
echo "::warning title=Invalid file permissions automatically fixed::$line"
3535
done
3636
- name: Upload artifact
37-
uses: actions/upload-pages-artifact@v2
37+
uses: actions/upload-pages-artifact@v3
3838
with:
3939
path: ./CodeHawk/_build/default/_doc/_html
4040

@@ -47,4 +47,4 @@ jobs:
4747
steps:
4848
- name: Deploy to GitHub Pages
4949
id: deployment
50-
uses: actions/deploy-pages@v2
50+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)