Skip to content

Commit bcc7309

Browse files
dependabot[bot]sgammon
authored andcommitted
chore(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] <support@github.com> Signed-off-by: Sam Gammon <sam@elide.dev>
1 parent ef9721e commit bcc7309

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

.github/workflows/checks.scorecards.yml

+1-1
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@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
67+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
6868
with:
6969
name: SARIF file
7070
path: results.sarif

.github/workflows/job.build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ jobs:
351351
-PbuildSamples=false \
352352
-PbuildDocs=false
353353
- name: "Artifact: Build Outputs"
354-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
354+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
355355
with:
356356
name: elide-framework
357357
path: |

.github/workflows/job.cli.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -245,21 +245,21 @@ jobs:
245245
popd;
246246
echo "Binary compressed.";
247247
- name: "Artifacts: Debug Binary (Unix)"
248-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
248+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
249249
if: success() && !contains(matrix.runner, 'windows')
250250
with:
251251
name: cli-debug-${{ matrix.tag }}
252252
path: |
253253
./packages/cli/build/native/nativeCompile/elide.debug.xz
254254
- name: "Artifacts: Debug Binary (Windows)"
255-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
255+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
256256
if: success() && contains(matrix.runner, 'windows')
257257
with:
258258
name: cli-debug-${{ matrix.tag }}
259259
path: |
260260
./packages/cli/build/native/nativeCompile/elide.debug
261261
- name: "Artifacts: Dashboard Dump"
262-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
262+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
263263
if: success()
264264
with:
265265
name: cli-debug-report-${{ matrix.tag }}
@@ -390,7 +390,7 @@ jobs:
390390
-Pversion=${{ inputs.version }} \
391391
-Pelide.version=${{ inputs.version }}
392392
- name: "Artifacts: Release Binary (Posix)"
393-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
393+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
394394
if: success() && contains(matrix.runner, 'windows') != true
395395
with:
396396
name: cli-release-${{ matrix.tag }}
@@ -400,7 +400,7 @@ jobs:
400400
./packages/cli/build/nativeOptimizedCompile/elide-${{ inputs.version }}-${{ matrix.tag }}.*.tgz
401401
./packages/cli/build/nativeOptimizedCompile/elide-${{ inputs.version }}-${{ matrix.tag }}.*.txz
402402
- name: "Artifacts: Release Binary (Windows)"
403-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
403+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
404404
if: success() && contains(matrix.runner, 'windows')
405405
with:
406406
name: cli-release-${{ matrix.tag }}

.github/workflows/job.site.yml

+3-3
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@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
122+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
123123
with:
124124
name: site-tarball-phase1
125125
path: ./site.tar.gz
126126
- name: "Upload: Site"
127-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
127+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
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@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
250+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
251251
with:
252252
name: site-tarball-phase2
253253
path: ./site.tar.gz

.github/workflows/job.test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ jobs:
367367
-Pelide.ci=true \
368368
-PbuildDocs=false
369369
- name: "Artifact: Reports"
370-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
370+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
371371
with:
372372
name: test-reports-jvm
373373
path: |
@@ -604,7 +604,7 @@ jobs:
604604
-Pelide.ci=true \
605605
-PbuildDocs=false
606606
- name: "Artifact: Reports"
607-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
607+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
608608
with:
609609
name: test-reports-native
610610
path: |

0 commit comments

Comments
 (0)