From bb2a6d6ad03da3774e454d9c300d7a75648d686a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 1 Dec 2023 04:53:23 +0000 Subject: [PATCH] Bump the gha-dependencies group with 5 updates Bumps the gha-dependencies group with 5 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `2` | `4` | | [actions/setup-python](https://github.com/actions/setup-python) | `1` | `4` | | [actions/cache](https://github.com/actions/cache) | `1` | `3` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `1` | `3` | | [JRubics/poetry-publish](https://github.com/jrubics/poetry-publish) | `1.8` | `1.17` | Updates `actions/checkout` from 2 to 4 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v4) Updates `actions/setup-python` from 1 to 4 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v1...v4) Updates `actions/cache` from 1 to 3 - [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/v1...v3) Updates `codecov/codecov-action` from 1 to 3 - [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/v1...v3) Updates `JRubics/poetry-publish` from 1.8 to 1.17 - [Release notes](https://github.com/jrubics/poetry-publish/releases) - [Commits](https://github.com/jrubics/poetry-publish/compare/v1.8...v1.17) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha-dependencies - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha-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: JRubics/poetry-publish dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gha-dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/integration-test.yml | 8 ++++---- .github/workflows/publish.yml | 4 ++-- .github/workflows/test.yml | 8 ++++---- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index 8b6352c6..c70299e4 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -19,9 +19,9 @@ jobs: fail-fast: false steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v1 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - name: Get full python version @@ -34,7 +34,7 @@ jobs: - name: Configure poetry run: poetry config virtualenvs.in-project true - name: Set up cache - uses: actions/cache@v1 + uses: actions/cache@v3 id: cache with: path: .venv @@ -52,4 +52,4 @@ jobs: EARTHACCESS_TEST_PASSWORD: ${{ secrets.EDL_PASSWORD }} run: poetry run bash scripts/integration-test.sh - name: Upload coverage - uses: codecov/codecov-action@v1 + uses: codecov/codecov-action@v3 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b2c2bd64..5f031432 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -7,11 +7,11 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: verify version matches git tag run: scripts/verify_tag.sh - name: Build and publish to pypi - uses: JRubics/poetry-publish@v1.8 + uses: JRubics/poetry-publish@v1.17 with: python_version: "3.9" pypi_token: ${{ secrets.PYPI_TOKEN }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 468417f1..53f1fcc4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,9 +14,9 @@ jobs: fail-fast: false steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - name: Get full python version @@ -29,7 +29,7 @@ jobs: - name: Configure poetry run: poetry config virtualenvs.in-project true - name: Set up cache - uses: actions/cache@v1 + uses: actions/cache@v3 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@v1 + uses: codecov/codecov-action@v3