Skip to content

Commit 4fdb398

Browse files
chore(deps): Bump actions/upload-artifact from 4.6.1 to 4.6.2 (#1328)
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> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent e60dc2a commit 4fdb398

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

.github/workflows/checks.scorecards.yml

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

.github/workflows/job.build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ jobs:
392392
-PbuildDocs=false \
393393
-Pelide.buildMode=dev
394394
- name: "Artifact: Build Outputs"
395-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
395+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
396396
with:
397397
name: elide-framework
398398
path: |

.github/workflows/job.cli.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -253,21 +253,21 @@ jobs:
253253
popd;
254254
echo "Binary compressed.";
255255
- name: "Artifacts: Debug Binary (Unix)"
256-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
256+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
257257
if: success() && !contains(matrix.runner, 'windows')
258258
with:
259259
name: cli-debug-${{ matrix.tag }}
260260
path: |
261261
./packages/cli/build/native/nativeCompile/elide.xz
262262
- name: "Artifacts: Debug Binary (Windows)"
263-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
263+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
264264
if: success() && contains(matrix.runner, 'windows')
265265
with:
266266
name: cli-debug-${{ matrix.tag }}
267267
path: |
268268
./packages/cli/build/native/nativeCompile/elide
269269
- name: "Artifacts: Dashboard Dump"
270-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
270+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
271271
if: success()
272272
with:
273273
name: cli-debug-report-${{ matrix.tag }}
@@ -398,7 +398,7 @@ jobs:
398398
-Pversion=${{ inputs.version }} \
399399
-Pelide.version=${{ inputs.version }}
400400
- name: "Artifacts: Release Binary (Posix)"
401-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
401+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
402402
if: success() && contains(matrix.runner, 'windows') != true
403403
with:
404404
name: cli-release-${{ matrix.tag }}
@@ -408,7 +408,7 @@ jobs:
408408
./packages/cli/build/nativeOptimizedCompile/elide-${{ inputs.version }}-${{ matrix.tag }}.*.tgz
409409
./packages/cli/build/nativeOptimizedCompile/elide-${{ inputs.version }}-${{ matrix.tag }}.*.txz
410410
- name: "Artifacts: Release Binary (Windows)"
411-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
411+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
412412
if: success() && contains(matrix.runner, 'windows')
413413
with:
414414
name: cli-release-${{ matrix.tag }}

.github/workflows/job.site.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,12 +119,12 @@ jobs:
119119
run: |
120120
tar -czf site.tar.gz build/site
121121
- name: "Upload: Manifest"
122-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
122+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
123123
with:
124124
name: site-tarball-phase1
125125
path: ./site.tar.gz
126126
- name: "Upload: Site"
127-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
127+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
128128
with:
129129
name: site-manifest
130130
path: ./site/docs/app/build/generated/ksp/main/resources/elide/runtime/generated/app.manifest.pb
@@ -247,7 +247,7 @@ jobs:
247247
rm -fv site.tar.gz;
248248
tar -czf site.tar.gz build/site;
249249
- name: "Upload: Site Tarball"
250-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
250+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
251251
with:
252252
name: site-tarball-phase2
253253
path: ./site.tar.gz

.github/workflows/job.test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ jobs:
388388
-Pelide.ci=true \
389389
-PbuildDocs=false
390390
- name: "Artifact: Reports"
391-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
391+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
392392
with:
393393
name: test-reports-jvm
394394
path: |
@@ -637,7 +637,7 @@ jobs:
637637
-Pelide.ci=true \
638638
-PbuildDocs=false
639639
- name: "Artifact: Reports"
640-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
640+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
641641
with:
642642
name: test-reports-native
643643
path: |

0 commit comments

Comments
 (0)