From 5b27d34bbb74e1ac288967d87dd1932321c0bbcb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Feb 2025 12:10:18 +0000 Subject: [PATCH] Bump the actions-version group with 3 updates Bumps the actions-version group with 3 updates: [mamba-org/setup-micromamba](https://github.com/mamba-org/setup-micromamba), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [softprops/action-gh-release](https://github.com/softprops/action-gh-release). Updates `mamba-org/setup-micromamba` from 2.0.3 to 2.0.4 - [Release notes](https://github.com/mamba-org/setup-micromamba/releases) - [Commits](https://github.com/mamba-org/setup-micromamba/compare/068f1ab4b37ed9b3d9f73da7db90a0cda0a48d29...0dea6379afdaffa5d528b3d1dabc45da37f443fc) Updates `actions/upload-artifact` from 4.5.0 to 4.6.0 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/6f51ac03b9356f520e9adb1b1b7802705f340c2b...65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08) Updates `softprops/action-gh-release` from 2.2.0 to 2.2.1 - [Release notes](https://github.com/softprops/action-gh-release/releases) - [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md) - [Commits](https://github.com/softprops/action-gh-release/compare/7b4da11513bf3f43f9999e90eabced41ab8bb048...c95fe1489396fe8a9eb87c0abf8aa5b2ef267fda) --- updated-dependencies: - dependency-name: mamba-org/setup-micromamba dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions-version - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions-version - dependency-name: softprops/action-gh-release dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions-version ... Signed-off-by: dependabot[bot] --- .github/workflows/build_and_test.yaml | 8 ++++---- .github/workflows/release.yaml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build_and_test.yaml b/.github/workflows/build_and_test.yaml index b055ae4ab5..f541d4ce70 100644 --- a/.github/workflows/build_and_test.yaml +++ b/.github/workflows/build_and_test.yaml @@ -126,7 +126,7 @@ jobs: submodules: true - name: Create Python Environment - uses: mamba-org/setup-micromamba@068f1ab4b37ed9b3d9f73da7db90a0cda0a48d29 # v2.0.3 + uses: mamba-org/setup-micromamba@0dea6379afdaffa5d528b3d1dabc45da37f443fc # v2.0.4 with: micromamba-version: '2.0.2-2' environment-name: test @@ -188,13 +188,13 @@ jobs: run: tar --use-compress-program='zstd -10 -T0' -cvf install.tar install - name: 'Upload build' - uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0 + uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 with: name: build-${{ inputs.config }}-${{ github.sha }} path: build.tar retention-days: 7 - name: 'Upload install' - uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0 + uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 with: name: install-${{ inputs.config }}-${{ github.sha }} path: install.tar @@ -223,7 +223,7 @@ jobs: path: code - name: Create Python Environment - uses: mamba-org/setup-micromamba@068f1ab4b37ed9b3d9f73da7db90a0cda0a48d29 # v2.0.3 + uses: mamba-org/setup-micromamba@0dea6379afdaffa5d528b3d1dabc45da37f443fc # v2.0.4 with: micromamba-version: '2.0.2-2' environment-name: test diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 95b723c431..460858037f 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -67,7 +67,7 @@ jobs: run: tar -cvJf ${name}-${tag:1}.tar.xz ${name}-${tag:1} - name: Upload release files - uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0 + uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 with: name: release path: | @@ -86,7 +86,7 @@ jobs: name: release - name: Create release - uses: softprops/action-gh-release@7b4da11513bf3f43f9999e90eabced41ab8bb048 # v2.2.0 + uses: softprops/action-gh-release@c95fe1489396fe8a9eb87c0abf8aa5b2ef267fda # v2.2.1 if: startsWith(github.ref, 'refs/tags/v') with: files: "*.tar.*"