From 26922683ec983779bdbd8a074659b6f812381b97 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 4 Jul 2024 14:28:17 -0600 Subject: [PATCH] Bump the actions group in /.github/workflows with 6 updates (#436) Bumps the actions group in /.github/workflows with 6 updates: | Package | From | To | | --- | --- | --- | | [actions/add-to-project](https://github.com/actions/add-to-project) | `1.0.1` | `1.0.2` | | [actions/checkout](https://github.com/actions/checkout) | `3` | `4` | | [lycheeverse/lychee-action](https://github.com/lycheeverse/lychee-action) | `1.9.0` | `1.10.0` | | [actions/setup-python](https://github.com/actions/setup-python) | `4` | `5` | | [pre-commit/action](https://github.com/pre-commit/action) | `2.0.0` | `3.0.1` | | [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) | `5` | `6` | Updates `actions/add-to-project` from 1.0.1 to 1.0.2 - [Release notes](https://github.com/actions/add-to-project/releases) - [Commits](https://github.com/actions/add-to-project/compare/v1.0.1...v1.0.2) Updates `actions/checkout` from 3 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/v3...v4) Updates `lycheeverse/lychee-action` from 1.9.0 to 1.10.0 - [Release notes](https://github.com/lycheeverse/lychee-action/releases) - [Commits](https://github.com/lycheeverse/lychee-action/compare/v1.9.0...v1.10.0) 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) Updates `pre-commit/action` from 2.0.0 to 3.0.1 - [Release notes](https://github.com/pre-commit/action/releases) - [Commits](https://github.com/pre-commit/action/compare/v2.0.0...v3.0.1) Updates `peter-evans/create-pull-request` from 5 to 6 - [Release notes](https://github.com/peter-evans/create-pull-request/releases) - [Commits](https://github.com/peter-evans/create-pull-request/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/add-to-project dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: lycheeverse/lychee-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: pre-commit/action dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: peter-evans/create-pull-request dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/add-help-wanted.yml | 2 +- .github/workflows/build-site.yml | 2 +- .github/workflows/linkcheck.yml | 2 +- .github/workflows/update-all-review-data.yml | 8 ++++---- .github/workflows/update-contribs-reviews.yml | 6 +++--- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/add-help-wanted.yml b/.github/workflows/add-help-wanted.yml index ebe6b92d..efeb7e24 100644 --- a/.github/workflows/add-help-wanted.yml +++ b/.github/workflows/add-help-wanted.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Add issue to project id: add-to-project - uses: actions/add-to-project@v1.0.1 + uses: actions/add-to-project@v1.0.2 with: project-url: https://github.com/orgs/pyOpenSci/projects/3 # This is a organization level token so it can be used across all repos in our org diff --git a/.github/workflows/build-site.yml b/.github/workflows/build-site.yml index c6c04bec..2df86035 100644 --- a/.github/workflows/build-site.yml +++ b/.github/workflows/build-site.yml @@ -39,7 +39,7 @@ jobs: - name: Check links with lychee id: lychee - uses: lycheeverse/lychee-action@v1.9.0 + uses: lycheeverse/lychee-action@v1.10.0 with: fail: true args: --verbose --no-progress _site/*.html diff --git a/.github/workflows/linkcheck.yml b/.github/workflows/linkcheck.yml index da76880c..f46b656c 100644 --- a/.github/workflows/linkcheck.yml +++ b/.github/workflows/linkcheck.yml @@ -20,7 +20,7 @@ jobs: - name: Link Checker id: lychee - uses: lycheeverse/lychee-action@v1.9.0 + uses: lycheeverse/lychee-action@v1.10.0 with: args: --verbose --no-progress _site/*.html env: diff --git a/.github/workflows/update-all-review-data.yml b/.github/workflows/update-all-review-data.yml index da57eae3..0a0fb0ed 100644 --- a/.github/workflows/update-all-review-data.yml +++ b/.github/workflows/update-all-review-data.yml @@ -8,9 +8,9 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: "3.10" - name: Upgrade pip @@ -26,11 +26,11 @@ jobs: update-reviews update-review-teams - name: Run pre-commit - uses: pre-commit/action@v2.0.0 + uses: pre-commit/action@v3.0.1 with: extra_args: --files _data/packages.yml _data/contributors.yml - name: Create Pull Request - uses: peter-evans/create-pull-request@v5 + uses: peter-evans/create-pull-request@v6 with: add-paths: | _data/contributors.yml diff --git a/.github/workflows/update-contribs-reviews.yml b/.github/workflows/update-contribs-reviews.yml index 4a4db768..ecbf8791 100644 --- a/.github/workflows/update-contribs-reviews.yml +++ b/.github/workflows/update-contribs-reviews.yml @@ -13,7 +13,7 @@ jobs: - name: Check out the code uses: actions/checkout@v4 - name: Setup Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: "3.10" - name: Upgrade pip @@ -30,10 +30,10 @@ jobs: update-review-teams - name: run precommit hooks - uses: pre-commit/action@v3.0.0 + uses: pre-commit/action@v3.0.1 continue-on-error: true - name: Create Pull Request - uses: peter-evans/create-pull-request@v5 + uses: peter-evans/create-pull-request@v6 with: add-paths: | _data/contributors.yml