From d0cd2d08ce1784ae7f20f32ecbbe2ee018a268f1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Feb 2025 21:57:41 +0000 Subject: [PATCH] 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](https://github.com/actions/upload-artifact/compare/65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08...4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/checks.scorecards.yml | 2 +- .github/workflows/job.build.yml | 2 +- .github/workflows/job.cli.yml | 10 +++++----- .github/workflows/job.site.yml | 6 +++--- .github/workflows/job.test.yml | 4 ++-- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/checks.scorecards.yml b/.github/workflows/checks.scorecards.yml index b8fa834a5..04a22364d 100644 --- a/.github/workflows/checks.scorecards.yml +++ b/.github/workflows/checks.scorecards.yml @@ -64,7 +64,7 @@ jobs: # Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF # format to the repository Actions tab. - name: "Artifact: Scorecard Analysis" - uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 + uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1 with: name: SARIF file path: results.sarif diff --git a/.github/workflows/job.build.yml b/.github/workflows/job.build.yml index 91310a619..04da6385f 100644 --- a/.github/workflows/job.build.yml +++ b/.github/workflows/job.build.yml @@ -351,7 +351,7 @@ jobs: -PbuildSamples=false \ -PbuildDocs=false - name: "Artifact: Build Outputs" - uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 + uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1 with: name: elide-framework path: | diff --git a/.github/workflows/job.cli.yml b/.github/workflows/job.cli.yml index fb88b5eaf..85bf0b035 100644 --- a/.github/workflows/job.cli.yml +++ b/.github/workflows/job.cli.yml @@ -245,21 +245,21 @@ jobs: popd; echo "Binary compressed."; - name: "Artifacts: Debug Binary (Unix)" - uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 + uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1 if: success() && !contains(matrix.runner, 'windows') with: name: cli-debug-${{ matrix.tag }} path: | ./packages/cli/build/native/nativeCompile/elide.debug.xz - name: "Artifacts: Debug Binary (Windows)" - uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 + uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1 if: success() && contains(matrix.runner, 'windows') with: name: cli-debug-${{ matrix.tag }} path: | ./packages/cli/build/native/nativeCompile/elide.debug - name: "Artifacts: Dashboard Dump" - uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 + uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1 if: success() with: name: cli-debug-report-${{ matrix.tag }} @@ -390,7 +390,7 @@ jobs: -Pversion=${{ inputs.version }} \ -Pelide.version=${{ inputs.version }} - name: "Artifacts: Release Binary (Posix)" - uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 + uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1 if: success() && contains(matrix.runner, 'windows') != true with: name: cli-release-${{ matrix.tag }} @@ -400,7 +400,7 @@ jobs: ./packages/cli/build/nativeOptimizedCompile/elide-${{ inputs.version }}-${{ matrix.tag }}.*.tgz ./packages/cli/build/nativeOptimizedCompile/elide-${{ inputs.version }}-${{ matrix.tag }}.*.txz - name: "Artifacts: Release Binary (Windows)" - uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 + uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1 if: success() && contains(matrix.runner, 'windows') with: name: cli-release-${{ matrix.tag }} diff --git a/.github/workflows/job.site.yml b/.github/workflows/job.site.yml index 10d3aac7a..2bbc43d03 100644 --- a/.github/workflows/job.site.yml +++ b/.github/workflows/job.site.yml @@ -119,12 +119,12 @@ jobs: run: | tar -czf site.tar.gz build/site - name: "Upload: Manifest" - uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 + uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1 with: name: site-tarball-phase1 path: ./site.tar.gz - name: "Upload: Site" - uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 + uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1 with: name: site-manifest path: ./site/docs/app/build/generated/ksp/main/resources/elide/runtime/generated/app.manifest.pb @@ -247,7 +247,7 @@ jobs: rm -fv site.tar.gz; tar -czf site.tar.gz build/site; - name: "Upload: Site Tarball" - uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 + uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1 with: name: site-tarball-phase2 path: ./site.tar.gz diff --git a/.github/workflows/job.test.yml b/.github/workflows/job.test.yml index f0980f23c..fb822f330 100644 --- a/.github/workflows/job.test.yml +++ b/.github/workflows/job.test.yml @@ -367,7 +367,7 @@ jobs: -Pelide.ci=true \ -PbuildDocs=false - name: "Artifact: Reports" - uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 + uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1 with: name: test-reports-jvm path: | @@ -604,7 +604,7 @@ jobs: -Pelide.ci=true \ -PbuildDocs=false - name: "Artifact: Reports" - uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 + uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1 with: name: test-reports-native path: |