this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore(deps): bump the all-dependencies group with 2 updates (#3322)

Bumps the all-dependencies group with 2 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact).


Updates `actions/upload-artifact` from 4 to 5
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/v4...v5)

Updates `actions/download-artifact` from 5 to 6
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](https://github.com/actions/download-artifact/compare/v5...v6)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
dependency-version: '5'
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: all-dependencies
- dependency-name: actions/download-artifact
dependency-version: '6'
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: all-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

authored by

dependabot[bot]
dependabot[bot]
and committed by
GitHub
e875b34c babce350

+5 -5
+2 -2
.github/workflows/deploy.yml
··· 108 108 touch "${{ runner.temp }}/digests/${digest#sha256:}" 109 109 110 110 - name: Upload digest 111 - uses: actions/upload-artifact@v4 111 + uses: actions/upload-artifact@v5 112 112 with: 113 113 name: digests-${{ env.PLATFORM_PAIR }} 114 114 path: ${{ runner.temp }}/digests/* ··· 130 130 fetch-depth: 0 131 131 132 132 - name: Download digests 133 - uses: actions/download-artifact@v5 133 + uses: actions/download-artifact@v6 134 134 with: 135 135 path: ${{ runner.temp }}/digests 136 136 pattern: digests-*
+2 -2
.github/workflows/docs.yml
··· 40 40 make -C ./docs html 41 41 42 42 - name: Upload sphinx documentation 43 - uses: actions/upload-artifact@v4 43 + uses: actions/upload-artifact@v5 44 44 with: 45 45 name: sphinx-docs 46 46 path: ./docs/_build/html ··· 57 57 - uses: actions/checkout@v5 58 58 59 59 - name: Download sphinx documentation 60 - uses: actions/download-artifact@v5 60 + uses: actions/download-artifact@v6 61 61 with: 62 62 name: sphinx-docs 63 63 path: ./build
+1 -1
.github/workflows/reusable-test.yml
··· 102 102 103 103 - name: Upload db artifact 104 104 if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/develop' }} 105 - uses: actions/upload-artifact@v4 105 + uses: actions/upload-artifact@v5 106 106 with: 107 107 name: care-db-dump 108 108 path: care_db.dump