Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/buildindex/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ outputs:
description: 'The time we greeted you'

runs:
using: 'node20'
using: 'node24'
main: 'index.js'
18 changes: 9 additions & 9 deletions .github/workflows/BuildDocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,14 @@ jobs:

# This repo
- name: Checkout docs
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
path: main
fetch-depth: 0

# This repo's wiki (the Official docs wiki)
- name: Checkout docs wiki repo
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
repository: delph-in/docs.wiki
path: docswiki
Expand Down Expand Up @@ -96,26 +96,26 @@ jobs:
ref-to-teaser-path: ./main/latestsites/refToTeaser.json

# Upload any output data so users can get at it
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
if: ${{ failure() }}
with:
name: Site Errors
path: main/latestsrc/SiteErrors.json
if-no-files-found: ignore # 'warn' or 'ignore' are also available, defaults to `warn`

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: All Pages
path: main/latestsrc/AllPages.json
if-no-files-found: ignore # 'warn' or 'ignore' are also available, defaults to `warn`

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: All Links (working, broken, local, external, etc)
path: main/latestsrc/AllLinks.json
if-no-files-found: ignore # 'warn' or 'ignore' are also available, defaults to `warn`

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: Fixes for broken links To Wiki pages
path: main/latestsrc/FixesForBrokenLinksToWikiPages.json
Expand All @@ -125,7 +125,7 @@ jobs:

# Build each site with Jekyll
- name: Setup Pages
uses: actions/configure-pages@v1
uses: actions/configure-pages@v6

- name: Build Home with Jekyll
uses: actions/jekyll-build-pages@v1
Expand Down Expand Up @@ -177,7 +177,7 @@ jobs:


- name: Upload all the sites to github pages
uses: actions/upload-pages-artifact@v3
uses: actions/upload-pages-artifact@v5
with:
path: main/latestsites/

Expand Down Expand Up @@ -221,4 +221,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
uses: actions/deploy-pages@v5
4 changes: 2 additions & 2 deletions .github/workflows/DailyDocBuildIfWikiUpdates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:

# Checkout the wiki
- name: Checkout DELPH-IN wiki
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
repository: delph-in/docs.wiki
path: version_check
Expand All @@ -62,7 +62,7 @@ jobs:
# specified path, and overwrite the file created in the "Create cache file" step in the path
- name: Check SHA
id: check_sha
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: check-SHA
key: check-SHA-${{ steps.head_sha.outputs.head_sha }}
Expand Down
Loading