Skip to content

Commit 24e2d33

Browse files
dependabot[bot]soumeh01
authored andcommitted
build(deps): bump actions/upload-artifact from 4.6.1 to 4.6.2
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.6.1 to 4.6.2. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@4cec3d8...ea165f8) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 73ff90c commit 24e2d33

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -67,47 +67,47 @@ jobs:
6767
GOOS=linux GOARCH=arm64 go build -o build/lin-arm64/vidx2pidx ./cmd
6868
6969
- name: Archive windows amd64 binaries
70-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
70+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
7171
with:
7272
name: vidx2pidx-windows-amd64
7373
path: ./build/win-amd64/vidx2pidx.exe
7474
retention-days: 1
7575
if-no-files-found: error
7676

7777
- name: Archive windows arm64 binaries
78-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
78+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
7979
with:
8080
name: vidx2pidx-windows-arm64
8181
path: ./build/win-arm64/vidx2pidx.exe
8282
retention-days: 1
8383
if-no-files-found: error
8484

8585
- name: Archive macos amd64 binaries
86-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
86+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
8787
with:
8888
name: vidx2pidx-mac-amd64
8989
path: ./build/mac-amd64/vidx2pidx
9090
retention-days: 1
9191
if-no-files-found: error
9292

9393
- name: Archive macos arm64 binaries
94-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
94+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
9595
with:
9696
name: vidx2pidx-mac-arm64
9797
path: ./build/mac-arm64/vidx2pidx
9898
retention-days: 1
9999
if-no-files-found: error
100100

101101
- name: Archive linux amd64 binaries
102-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
102+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
103103
with:
104104
name: vidx2pidx-lin-amd64
105105
path: ./build/lin-amd64/vidx2pidx
106106
retention-days: 1
107107
if-no-files-found: error
108108

109109
- name: Archive linux arm64 binaries
110-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
110+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
111111
with:
112112
name: vidx2pidx-lin-arm64
113113
path: ./build/lin-arm64/vidx2pidx

.github/workflows/scorecards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
6969
# format to the repository Actions tab.
7070
- name: "Upload artifact"
71-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
71+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
7272
with:
7373
name: SARIF file
7474
path: results.sarif

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ jobs:
152152
go-junit-report -set-exit-code -in build/vidx2pidxtests-${{ matrix.target }}-amd64.txt -iocopy -out build/vidx2pidx-testreport-${{ matrix.target }}-amd64.xml
153153
154154
- name: Archive unit test results
155-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
155+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
156156
with:
157157
name: test-results-${{ matrix.target }}
158158
path: ./build/vidx2pidx-testreport-*.xml

.github/workflows/tpip-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
working-directory: ./cmd
5454

5555
- name: Archive TPIP report
56-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
56+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
5757
with:
5858
name: tpip-report
5959
path: ./${{ env.tpip_report }}

0 commit comments

Comments
 (0)