mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 04:27:02 +01:00
chore(deps): bump the all group with 2 updates (#2372)
Bumps the all 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 3 to 4 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3...v4) Updates `actions/download-artifact` from 3 to 4 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: all ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
parent
d09c2448ff
commit
608e4b579d
4
.github/workflows/debian_package_kanidm.yml
vendored
4
.github/workflows/debian_package_kanidm.yml
vendored
|
@ -46,7 +46,7 @@ jobs:
|
|||
- name: Build packages (kanidm-unixd)
|
||||
run: make -f platform/debian/Makefile debs/kanidm-unixd
|
||||
- name: Upload debs
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: ubuntu-packages
|
||||
path: |
|
||||
|
@ -62,7 +62,7 @@ jobs:
|
|||
if: ${{ github.ref == 'refs/heads/master' && github.repository == 'kanidm/kanidm' }}
|
||||
steps:
|
||||
- name: Download previously built debs
|
||||
uses: actions/download-artifact@v3
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: ubuntu-packages
|
||||
- name: List packages
|
||||
|
|
4
.github/workflows/docker_build_kanidm.yml
vendored
4
.github/workflows/docker_build_kanidm.yml
vendored
|
@ -31,7 +31,7 @@ jobs:
|
|||
# Must use OCI exporter for multi-arch: https://github.com/docker/buildx/pull/1813
|
||||
outputs: type=oci,dest=/tmp/kanidm-docker.tar
|
||||
- name: Upload artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: kanidm-docker
|
||||
path: /tmp/kanidm-docker.tar
|
||||
|
@ -48,7 +48,7 @@ jobs:
|
|||
|
||||
steps:
|
||||
- name: Download artifact
|
||||
uses: actions/download-artifact@v3
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: kanidm-docker
|
||||
path: /tmp
|
||||
|
|
4
.github/workflows/docker_build_kanidmd.yml
vendored
4
.github/workflows/docker_build_kanidmd.yml
vendored
|
@ -30,7 +30,7 @@ jobs:
|
|||
# Must use OCI exporter for multi-arch: https://github.com/docker/buildx/pull/1813
|
||||
outputs: type=oci,dest=/tmp/kanidmd-docker.tar
|
||||
- name: Upload artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: kanidmd-docker
|
||||
path: /tmp/kanidmd-docker.tar
|
||||
|
@ -47,7 +47,7 @@ jobs:
|
|||
|
||||
steps:
|
||||
- name: Download artifact
|
||||
uses: actions/download-artifact@v3
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: kanidmd-docker
|
||||
path: /tmp
|
||||
|
|
4
.github/workflows/docker_build_radiusd.yml
vendored
4
.github/workflows/docker_build_radiusd.yml
vendored
|
@ -30,7 +30,7 @@ jobs:
|
|||
# Must use OCI exporter for multi-arch: https://github.com/docker/buildx/pull/1813
|
||||
outputs: type=oci,dest=/tmp/radius-docker.tar
|
||||
- name: Upload artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: radius-docker
|
||||
path: /tmp/radius-docker.tar
|
||||
|
@ -47,7 +47,7 @@ jobs:
|
|||
|
||||
steps:
|
||||
- name: Download artifact
|
||||
uses: actions/download-artifact@v3
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: radius-docker
|
||||
path: /tmp
|
||||
|
|
6
.github/workflows/kanidm_book.yml
vendored
6
.github/workflows/kanidm_book.yml
vendored
|
@ -50,7 +50,7 @@ jobs:
|
|||
find ./docs > docs/manifest.txt
|
||||
- name: Upload redirector artifact
|
||||
# https://github.com/actions/upload-artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: base
|
||||
path: docs/index.html
|
||||
|
@ -91,14 +91,14 @@ jobs:
|
|||
with:
|
||||
fetch-depth: 0
|
||||
- name: Download base artifact
|
||||
uses: actions/download-artifact@v3
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: base
|
||||
path: ./docs/
|
||||
env:
|
||||
ACTIONS_RUNNER_DEBUG: true
|
||||
- name: Download individual artifact
|
||||
uses: actions/download-artifact@v3
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: individual
|
||||
path: ./docs/
|
||||
|
|
2
.github/workflows/kanidm_individual_book.yml
vendored
2
.github/workflows/kanidm_individual_book.yml
vendored
|
@ -78,7 +78,7 @@ jobs:
|
|||
ACTIONS_RUNNER_DEBUG: true
|
||||
- name: Upload artifact
|
||||
# https://github.com/actions/upload-artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: individual
|
||||
path: ${{inputs.tag }}.tar.gz
|
||||
|
|
Loading…
Reference in a new issue