From f21fa85ebdfa966faccfc1f87708ba26992db653 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 1 Mar 2024 04:21:14 +0000 Subject: [PATCH] Bump the gha-dependencies group with 5 updates Bumps the gha-dependencies group with 5 updates: | Package | From | To | | --- | --- | --- | | [actions/cache](https://github.com/actions/cache) | `3` | `4` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `3` | `4` | | [tiangolo/issue-manager](https://github.com/tiangolo/issue-manager) | `0.4.0` | `0.5.0` | | [JRubics/poetry-publish](https://github.com/jrubics/poetry-publish) | `1.17` | `2.0` | | [conda-incubator/setup-miniconda](https://github.com/conda-incubator/setup-miniconda) | `3.0.1` | `3.0.3` | Updates `actions/cache` from 3 to 4 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3...v4) Updates `codecov/codecov-action` from 3 to 4 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v3...v4) Updates `tiangolo/issue-manager` from 0.4.0 to 0.5.0 - [Release notes](https://github.com/tiangolo/issue-manager/releases) - [Commits](https://github.com/tiangolo/issue-manager/compare/0.4.0...0.5.0) Updates `JRubics/poetry-publish` from 1.17 to 2.0 - [Release notes](https://github.com/jrubics/poetry-publish/releases) - [Commits](https://github.com/jrubics/poetry-publish/compare/v1.17...v2.0) Updates `conda-incubator/setup-miniconda` from 3.0.1 to 3.0.3 - [Release notes](https://github.com/conda-incubator/setup-miniconda/releases) - [Changelog](https://github.com/conda-incubator/setup-miniconda/blob/main/CHANGELOG.md) - [Commits](https://github.com/conda-incubator/setup-miniconda/compare/v3.0.1...v3.0.3) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha-dependencies - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha-dependencies - dependency-name: tiangolo/issue-manager dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gha-dependencies - dependency-name: JRubics/poetry-publish dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha-dependencies - dependency-name: conda-incubator/setup-miniconda dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gha-dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/integration-test.yml | 4 ++-- .github/workflows/issue-manager.yml | 2 +- .github/workflows/publish.yml | 2 +- .github/workflows/test-mindeps.yml | 4 ++-- .github/workflows/test.yml | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index d44d2872..2de24acf 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -41,7 +41,7 @@ jobs: - name: Configure poetry run: poetry config virtualenvs.in-project true - name: Set up cache - uses: actions/cache@v3 + uses: actions/cache@v4 id: cache with: path: .venv @@ -59,4 +59,4 @@ jobs: EARTHACCESS_TEST_PASSWORD: ${{ secrets.EDL_PASSWORD }} run: poetry run bash scripts/integration-test.sh - name: Upload coverage - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 diff --git a/.github/workflows/issue-manager.yml b/.github/workflows/issue-manager.yml index 2ddeab30..e9d55e06 100644 --- a/.github/workflows/issue-manager.yml +++ b/.github/workflows/issue-manager.yml @@ -17,7 +17,7 @@ jobs: issue-manager: runs-on: "ubuntu-latest" steps: - - uses: "tiangolo/issue-manager@0.4.0" + - uses: "tiangolo/issue-manager@0.5.0" with: token: "${{ secrets.GITHUB_TOKEN }}" config: > diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 5f031432..12f158cb 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -11,7 +11,7 @@ jobs: - name: verify version matches git tag run: scripts/verify_tag.sh - name: Build and publish to pypi - uses: JRubics/poetry-publish@v1.17 + uses: JRubics/poetry-publish@v2.0 with: python_version: "3.9" pypi_token: ${{ secrets.PYPI_TOKEN }} diff --git a/.github/workflows/test-mindeps.yml b/.github/workflows/test-mindeps.yml index c3663d33..0f99feaa 100644 --- a/.github/workflows/test-mindeps.yml +++ b/.github/workflows/test-mindeps.yml @@ -26,7 +26,7 @@ jobs: - name: Checkout source uses: actions/checkout@v4.1.1 - name: Setup Conda Environment - uses: conda-incubator/setup-miniconda@v3.0.1 + uses: conda-incubator/setup-miniconda@v3.0.3 with: miniforge-variant: Mambaforge miniforge-version: latest @@ -46,4 +46,4 @@ jobs: run: bash scripts/test.sh - name: Upload coverage - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f393ac66..2b1a1761 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -29,7 +29,7 @@ jobs: - name: Configure poetry run: poetry config virtualenvs.in-project true - name: Set up cache - uses: actions/cache@v3 + uses: actions/cache@v4 id: cache with: path: .venv @@ -42,4 +42,4 @@ jobs: - name: Test run: poetry run bash scripts/test.sh - name: Upload coverage - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4