Skip to content
Closed
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
8 changes: 4 additions & 4 deletions .github/workflows/ammr-doc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
rm -rf _build
sphinx-build -M html . _build -W --keep-going -a -t draft

- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
name: beta-version
path: Docs/_build/html
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
cd Docs
sphinx-build -M html . _build -a

- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
name: tagged-version
path: Docs/_build/html
Expand All @@ -86,11 +86,11 @@ jobs:
needs: [build-latest, build-tagged]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v7
- uses: actions/download-artifact@v8
with:
name: tagged-version
path: public
- uses: actions/download-artifact@v7
- uses: actions/download-artifact@v8
with:
name: beta-version
path: public/beta
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightly-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
RLM_LICENSE: ${{ secrets.LICENSE_SERVER }}

- name: Upload partial durations
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: test-durations-${{ matrix.test_group }}
path: |
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
- uses: actions/checkout@v6

- name: Download artifacts
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8

- name: Combine test-durations
run: |
Expand Down
Loading