Skip to content

Commit 4925726

Browse files
build(deps): bump actions/upload-artifact from 4.6.0 to 4.6.1
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.6.0 to 4.6.1. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@65c4c4a...4cec3d8) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 6c02321 commit 4925726

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

.github/workflows/api-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
working-directory: src/github.com/containerd/containerd
5151

5252
- name: Save release notes
53-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
53+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
5454
with:
5555
name: containerd-release-notes
5656
path: src/github.com/containerd/containerd/release-notes.md

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ jobs:
367367
}
368368
critest.exe --runtime-endpoint=npipe://.//pipe//containerd-containerd --test-images-file='${{env.CRI_TEST_IMAGES}}' --report-dir='${{github.workspace}}/critestreport' $skip
369369
370-
- uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
370+
- uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
371371
if: always()
372372
with:
373373
name: TestResults ${{ matrix.os }} ${{ matrix.cgroup_driver }}
@@ -514,7 +514,7 @@ jobs:
514514
sudo lsmod
515515
sudo dmesg -T -f kern
516516
517-
- uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
517+
- uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
518518
if: always()
519519
with:
520520
name: TestResults ${{ matrix.runtime }} ${{matrix.runc}} ${{ matrix.os }} ${{ matrix.cgroup_driver }}
@@ -686,7 +686,7 @@ jobs:
686686
if: always()
687687
- run: script/test/test2annotation.sh *-gotest.json
688688
if: always()
689-
- uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
689+
- uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
690690
if: always()
691691
with:
692692
name: TestResults MacOS

.github/workflows/fuzz.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
language: go
2727
continue-on-error: true
2828
- name: Upload Crash
29-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
29+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
3030
if: failure() && steps.build.outcome == 'success'
3131
with:
3232
name: artifacts

.github/workflows/nightly.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -99,31 +99,31 @@ jobs:
9999
#
100100

101101
- name: Upload artifacts (linux_amd64)
102-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
102+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
103103
with:
104104
name: linux_amd64
105105
path: src/github.com/containerd/containerd/bin_amd64
106106

107107
- name: Upload artifacts (linux_arm64)
108-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
108+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
109109
with:
110110
name: linux_arm64
111111
path: src/github.com/containerd/containerd/bin_arm64
112112

113113
- name: Upload artifacts (linux_s390x)
114-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
114+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
115115
with:
116116
name: linux_s390x
117117
path: src/github.com/containerd/containerd/bin_s390x
118118

119119
- name: Upload artifacts (linux_ppc64le)
120-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
120+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
121121
with:
122122
name: linux_ppc64le
123123
path: src/github.com/containerd/containerd/bin_ppc64le
124124

125125
- name: Upload artifacts (linux_riscv64)
126-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
126+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
127127
with:
128128
name: linux_riscv64
129129
path: src/github.com/containerd/containerd/bin_riscv64
@@ -158,7 +158,7 @@ jobs:
158158
make binaries
159159
160160
- name: Upload artifacts (windows_amd64)
161-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
161+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
162162
with:
163163
name: windows_amd64
164164
path: src/github.com/containerd/containerd/bin/

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
working-directory: src/github.com/containerd/containerd
5858

5959
- name: Save release notes
60-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
60+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
6161
with:
6262
name: containerd-release-notes
6363
path: src/github.com/containerd/containerd/release-notes.md
@@ -127,7 +127,7 @@ jobs:
127127
env:
128128
PLATFORM: ${{ matrix.dockerfile-platform }}
129129
- name: Save Artifacts
130-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
130+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
131131
with:
132132
name: release-tars-${{env.PLATFORM_CLEAN}}
133133
path: src/github.com/containerd/containerd/releases/*.tar.gz*

.github/workflows/scorecards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
4242
# format to the repository Actions tab.
4343
- name: "Upload artifact"
44-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # tag=v4.6.0
44+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # tag=v4.6.1
4545
with:
4646
name: SARIF file
4747
path: results.sarif

0 commit comments

Comments
 (0)