alpha
Login
or
Join now
flo-bit.dev
/
tiny-docs
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
[READ-ONLY] Mirror of https://github.com/flo-bit/tiny-docs. quick setup, simple, minimalistic docs for your github project
flo-bit.dev/tiny-docs/
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
bump ci
author
Florian
date
3 months ago
(Apr 24, 2026, 1:13 PM +0200)
commit
cc5f1092
cc5f1092b6338839ff2cff7c3a5af14572a0d496
parent
76716332
7671633220712149953e3dc1aa56c3cf376f2ddc
+6
-6
1 changed file
Expand all
Collapse all
Unified
Split
.github
workflows
tiny-docs.yml
+6
-6
.github/workflows/tiny-docs.yml
View file
Reviewed
···
30
30
runs-on: ubuntu-latest
31
31
steps:
32
32
- name: Checkout target repository
33
33
-
uses: actions/checkout@v4
33
33
+
uses: actions/checkout@v6
34
34
35
35
- name: Ensure docs-builder exists (checkout tiny-docs if missing)
36
36
if: ${{ hashFiles('docs-builder/**') == '' }}
37
37
-
uses: actions/checkout@v4
37
37
+
uses: actions/checkout@v6
38
38
with:
39
39
repository: ${{ inputs.tiny_docs_repo }}
40
40
ref: v1
···
71
71
echo "repo=$GITHUB_REPOSITORY" >> "$GITHUB_OUTPUT"
72
72
73
73
- name: Setup Node.js
74
74
-
uses: actions/setup-node@v4
74
74
+
uses: actions/setup-node@v6
75
75
with:
76
76
-
node-version: 20
76
76
+
node-version: 22
77
77
78
78
- name: Ensure tdocs.config.json has required fields (merge w/ defaults)
79
79
env:
···
85
85
run: node docs-builder/scripts/update-config.js
86
86
87
87
- name: Install, build, and upload the site artifact
88
88
-
uses: withastro/action@v3
88
88
+
uses: withastro/action@v6
89
89
with:
90
90
path: docs-builder/
91
91
···
98
98
steps:
99
99
- name: Deploy to GitHub Pages
100
100
id: deployment
101
101
-
uses: actions/deploy-pages@v4
101
101
+
uses: actions/deploy-pages@v5