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
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:
touch "${{ runner.temp }}/digests/${digest#sha256:}"

- name: Upload digest
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: digests-${{ env.PLATFORM_PAIR }}
path: ${{ runner.temp }}/digests/*
Expand All @@ -130,7 +130,7 @@ jobs:
fetch-depth: 0

- name: Download digests
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
path: ${{ runner.temp }}/digests
pattern: digests-*
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
make -C ./docs html

- name: Upload sphinx documentation
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: sphinx-docs
path: ./docs/_build/html
Expand All @@ -54,7 +54,7 @@ jobs:
- uses: actions/checkout@v5

- name: Download sphinx documentation
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: sphinx-docs
path: ./build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:

- name: Upload db artifact
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/develop' }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: care-db-dump
path: care_db.dump
Expand Down