From 7545b3016b7e4bb0964c61901f0b198b7c6423ac Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Dec 2023 04:50:22 +0000 Subject: [PATCH] Bump the dependencies group with 2 updates Bumps the dependencies group with 2 updates: [mamba-org/setup-micromamba](https://github.com/mamba-org/setup-micromamba) and [actions/setup-python](https://github.com/actions/setup-python). Updates `mamba-org/setup-micromamba` from 1.6.0 to 1.7.0 - [Release notes](https://github.com/mamba-org/setup-micromamba/releases) - [Commits](https://github.com/mamba-org/setup-micromamba/compare/db1df3ba9e07ea86f759e98b575c002747e9e757...8752438cc2755ab7d0de2a8d70b694f5586baae8) Updates `actions/setup-python` from 4 to 5 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v4...v5) --- updated-dependencies: - dependency-name: mamba-org/setup-micromamba dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yaml | 2 +- .github/workflows/pre-commit.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index df2d5f5..656fa33 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -16,7 +16,7 @@ jobs: - name: Fetch full git history run: git fetch --prune --unshallow - name: Set up Conda env - uses: mamba-org/setup-micromamba@db1df3ba9e07ea86f759e98b575c002747e9e757 + uses: mamba-org/setup-micromamba@8752438cc2755ab7d0de2a8d70b694f5586baae8 with: environment-file: environment.yml cache-environment: true diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 5753a6d..3337a05 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -21,11 +21,11 @@ jobs: - name: Checkout branch uses: actions/checkout@v4 - name: Set up micromamba - uses: mamba-org/setup-micromamba@db1df3ba9e07ea86f759e98b575c002747e9e757 + uses: mamba-org/setup-micromamba@8752438cc2755ab7d0de2a8d70b694f5586baae8 - name: Add micromamba to GITHUB_PATH run: echo "${HOME}/micromamba-bin" >> "$GITHUB_PATH" - name: Install Python 3.10 - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: "3.10" - name: Run pre-commit checks