1515 runs-on : ubuntu-latest
1616 steps :
1717 - name : get the gh-pages repo
18- uses : actions /checkout@v3
18+ uses : runloopai /checkout@main
1919 with :
2020 ref : gh-pages
2121
2525 tar -cvf documentation.tar ./docs
2626
2727 - name : create a document artifact
28- uses : actions /upload-artifact@v4
28+ uses : runloopai /upload-artifact@main
2929 with :
3030 name : documentation
3131 path : documentation.tar
@@ -35,17 +35,17 @@ jobs:
3535 runs-on : ubuntu-latest
3636 steps :
3737 - name : Checkout src
38- uses : actions /checkout@v4
38+ uses : runloopai /checkout@main
3939
4040 - run : mkdir -p ./docs
4141 - name : Download the existing documents artifact
42- uses : actions/download-artifact@v4
42+ uses : actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
4343 with :
4444 name : documentation
4545 - run : tar -xf documentation.tar ./docs -C ./docs
4646
4747 - name : Build
48- uses : actions /setup-node@v4
48+ uses : runloopai /setup-node@main
4949 with :
5050 node-version : 22.x
5151 cache : ' yarn'
5959 run : tar -cvf newdocumentation.tar ./docs
6060
6161 - name : create a new document artifact
62- uses : actions /upload-artifact@v4
62+ uses : runloopai /upload-artifact@main
6363 with :
6464 name : newdocumentation
6565 path : newdocumentation.tar
@@ -69,13 +69,13 @@ jobs:
6969 runs-on : ubuntu-latest
7070 steps :
7171 - name : checkout the gh-pages repo
72- uses : actions /checkout@v3
72+ uses : runloopai /checkout@main
7373 with :
7474 ref : gh-pages
7575
7676 - run : mkdir -p ./docs
7777 - name : Download the new documents artifact
78- uses : actions /download-artifact@v4
78+ uses : runloopai /download-artifact@main
7979 with :
8080 name : newdocumentation
8181 - run : tar -xf newdocumentation.tar ./docs -C ./docs
0 commit comments