From 2d66c32ba7bc269c8a36aa1cff78b9d6c8b6339d Mon Sep 17 00:00:00 2001 From: Andre_601 Date: Mon, 6 Nov 2023 13:47:51 +0100 Subject: [PATCH 1/3] Add link for Codeberg Pages guide --- docs/publishing-your-site.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/publishing-your-site.md b/docs/publishing-your-site.md index 37a50346d..acaf399b3 100644 --- a/docs/publishing-your-site.md +++ b/docs/publishing-your-site.md @@ -212,6 +212,7 @@ other providers: - [:simple-digitalocean: DigitalOcean][DigitalOcean] - [:simple-netlify: Netlify][Netlify] - [:simple-vercel: Vercel][Vercel] +- [:simple-codeberg: Codeberg Pages][Codeberg Pages @@ -224,3 +225,4 @@ other providers: [DigitalOcean]: https://www.starfallprojects.co.uk/projects/deploy-host-docs/deploy-mkdocs-material-digitalocean-app-platform/ [Netlify]: https://www.starfallprojects.co.uk/projects/deploy-host-docs/deploy-mkdocs-material-netlify/ [Vercel]: https://www.starfallprojects.co.uk/projects/deploy-host-docs/deploy-mkdocs-material-vercel/ + [Codeberg Pages]: https://andre601.ch/blog/2023/11-05-using-codeberg-pages/ From 943fa495daac4389cfc168c9bf77041f6de39364 Mon Sep 17 00:00:00 2001 From: Andre601 Date: Mon, 22 Jan 2024 00:52:38 +0100 Subject: [PATCH 2/3] Update publishing-your-site.md --- docs/publishing-your-site.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/publishing-your-site.md b/docs/publishing-your-site.md index c95d99d1e..c8293835d 100644 --- a/docs/publishing-your-site.md +++ b/docs/publishing-your-site.md @@ -221,7 +221,7 @@ other providers: - [:material-airballoon-outline: Fly.io][Flyio] - [:simple-netlify: Netlify][Netlify] - [:simple-vercel: Vercel][Vercel] -- [:simple-codeberg: Codeberg Pages][Codeberg Pages +- [:simple-codeberg: Codeberg Pages][Codeberg Pages] From 0b8014d3525c312a0a7819c571fd0ecbca688932 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 04:36:29 +0000 Subject: [PATCH 3/3] Bump actions/cache from 3 to 4 Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 4 ++-- .github/workflows/documentation.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a888a488e..68216e2dd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -49,7 +49,7 @@ jobs: node-version: ${{ env.NODE_VERSION }} - name: Set up Node.js dependency cache - uses: actions/cache@v3 + uses: actions/cache@v4 id: cache with: key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }} @@ -77,7 +77,7 @@ jobs: node-version: ${{ env.NODE_VERSION }} - name: Set up Node.js dependency cache - uses: actions/cache@v3 + uses: actions/cache@v4 id: cache with: key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }} diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 46033cc75..3dd58abab 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -58,7 +58,7 @@ jobs: requirements.txt - name: Set up build cache - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: key: mkdocs-material-${{ hashfiles('.cache/**') }} path: .cache @@ -112,7 +112,7 @@ jobs: uses: actions/deploy-pages@v4 - name: Save build cache - uses: actions/cache/save@v3 + uses: actions/cache/save@v4 with: key: mkdocs-material-${{ hashfiles('.cache/**') }} path: .cache