build(deps): bump the artifacts group with 2 updates
Bumps the artifacts 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.6.1 to 4.6.2 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](4cec3d8aa0...ea165f8d65) Updates `actions/download-artifact` from 4.1.9 to 4.2.1 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](cc20338598...95815c38cf) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-patch dependency-group: artifacts - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-minor dependency-group: artifacts ... Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
parent
85a8aba9bc
commit
b35a796469
4
.github/workflows/actionlint.yml
vendored
4
.github/workflows/actionlint.yml
vendored
@ -57,7 +57,7 @@ jobs:
|
|||||||
zizmor --format sarif . > results.sarif || true
|
zizmor --format sarif . > results.sarif || true
|
||||||
|
|
||||||
- name: Upload SARIF file
|
- name: Upload SARIF file
|
||||||
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
|
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
|
||||||
with:
|
with:
|
||||||
name: results.sarif
|
name: results.sarif
|
||||||
path: results.sarif
|
path: results.sarif
|
||||||
@ -72,7 +72,7 @@ jobs:
|
|||||||
security-events: write
|
security-events: write
|
||||||
steps:
|
steps:
|
||||||
- name: Download SARIF file
|
- name: Download SARIF file
|
||||||
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4.1.9
|
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
|
||||||
with:
|
with:
|
||||||
name: results.sarif
|
name: results.sarif
|
||||||
path: results.sarif
|
path: results.sarif
|
||||||
|
|||||||
4
.github/workflows/docker.yml
vendored
4
.github/workflows/docker.yml
vendored
@ -234,7 +234,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Upload the Docker image digest
|
- name: Upload the Docker image digest
|
||||||
if: fromJSON(steps.attributes.outputs.push)
|
if: fromJSON(steps.attributes.outputs.push)
|
||||||
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
|
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
|
||||||
with:
|
with:
|
||||||
name: digest-${{ matrix.version }}-${{ matrix.arch }}
|
name: digest-${{ matrix.version }}-${{ matrix.arch }}
|
||||||
path: ${{ runner.temp }}/digests/*
|
path: ${{ runner.temp }}/digests/*
|
||||||
@ -254,7 +254,7 @@ jobs:
|
|||||||
cache-binary: false
|
cache-binary: false
|
||||||
|
|
||||||
- name: Download Docker image digests
|
- name: Download Docker image digests
|
||||||
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4.1.9
|
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
|
||||||
with:
|
with:
|
||||||
path: ${{ runner.temp }}/digests
|
path: ${{ runner.temp }}/digests
|
||||||
pattern: digest-${{ matrix.version }}-*
|
pattern: digest-${{ matrix.version }}-*
|
||||||
|
|||||||
6
.github/workflows/pkg-installer.yml
vendored
6
.github/workflows/pkg-installer.yml
vendored
@ -138,7 +138,7 @@ jobs:
|
|||||||
subject-path: Homebrew-${{ steps.homebrew-version.outputs.version }}.pkg
|
subject-path: Homebrew-${{ steps.homebrew-version.outputs.version }}.pkg
|
||||||
|
|
||||||
- name: Upload installer to GitHub Actions
|
- name: Upload installer to GitHub Actions
|
||||||
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
|
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
|
||||||
with:
|
with:
|
||||||
name: Homebrew-${{ steps.homebrew-version.outputs.version }}.pkg
|
name: Homebrew-${{ steps.homebrew-version.outputs.version }}.pkg
|
||||||
path: Homebrew-${{ steps.homebrew-version.outputs.version }}.pkg
|
path: Homebrew-${{ steps.homebrew-version.outputs.version }}.pkg
|
||||||
@ -160,7 +160,7 @@ jobs:
|
|||||||
name: macos-15-arm64
|
name: macos-15-arm64
|
||||||
steps:
|
steps:
|
||||||
- name: Download installer from GitHub Actions
|
- name: Download installer from GitHub Actions
|
||||||
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4.1.9
|
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
|
||||||
with:
|
with:
|
||||||
name: "${{ needs.build.outputs.installer_path }}"
|
name: "${{ needs.build.outputs.installer_path }}"
|
||||||
|
|
||||||
@ -213,7 +213,7 @@ jobs:
|
|||||||
contents: write
|
contents: write
|
||||||
steps:
|
steps:
|
||||||
- name: Download installer from GitHub Actions
|
- name: Download installer from GitHub Actions
|
||||||
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4.1.9
|
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
|
||||||
with:
|
with:
|
||||||
name: "${{ needs.build.outputs.installer_path }}"
|
name: "${{ needs.build.outputs.installer_path }}"
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user