Skip to content
Open
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
8 changes: 4 additions & 4 deletions .github/workflows/hub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
git commit -m "First commit"

- name: Upload generated site configuration
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: antora-site-configuration
path: build/
Expand All @@ -74,7 +74,7 @@ jobs:
needs: generate
steps:
- name: Download Antora Site configuration
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: antora-site-configuration

Expand All @@ -85,7 +85,7 @@ jobs:
run: cd $PROJECT_SLUG; make html

- name: Upload built Antora Site
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: antora-site
path: component-hub
Expand All @@ -98,7 +98,7 @@ jobs:
if: github.ref == 'refs/heads/master'
steps:
- name: Download Antora Site
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: antora-site

Expand Down