Skip to content

Commit 00d9f8b

Browse files
[MNT] Bump the github-actions group with 6 updates (#45)
Bumps the github-actions group with 6 updates: | Package | From | To | | --- | --- | --- | | [tj-actions/changed-files](https://github.com/tj-actions/changed-files) | `41.1.1` | `44.3.0` | | [pre-commit/action](https://github.com/pre-commit/action) | `3.0.0` | `3.0.1` | | [pre-commit-ci/lite-action](https://github.com/pre-commit-ci/lite-action) | `1.0.1` | `1.0.2` | | [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) | `5` | `6` | | [nick-fields/retry](https://github.com/nick-fields/retry) | `2` | `3` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `3` | `4` | Updates `tj-actions/changed-files` from 41.1.1 to 44.3.0 - [Release notes](https://github.com/tj-actions/changed-files/releases) - [Changelog](https://github.com/tj-actions/changed-files/blob/main/HISTORY.md) - [Commits](tj-actions/changed-files@v41.1.1...v44.3.0) Updates `pre-commit/action` from 3.0.0 to 3.0.1 - [Release notes](https://github.com/pre-commit/action/releases) - [Commits](pre-commit/action@v3.0.0...v3.0.1) Updates `pre-commit-ci/lite-action` from 1.0.1 to 1.0.2 - [Release notes](https://github.com/pre-commit-ci/lite-action/releases) - [Commits](pre-commit-ci/lite-action@v1.0.1...v1.0.2) Updates `peter-evans/create-pull-request` from 5 to 6 - [Release notes](https://github.com/peter-evans/create-pull-request/releases) - [Commits](peter-evans/create-pull-request@v5...v6) Updates `nick-fields/retry` from 2 to 3 - [Release notes](https://github.com/nick-fields/retry/releases) - [Changelog](https://github.com/nick-fields/retry/blob/master/.releaserc.js) - [Commits](nick-fields/retry@v2...v3) 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](codecov/codecov-action@v3...v4) --- updated-dependencies: - dependency-name: tj-actions/changed-files dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: pre-commit/action dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: pre-commit-ci/lite-action dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: peter-evans/create-pull-request dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: nick-fields/retry dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent cae66fe commit 00d9f8b

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/pre_commit.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,19 +27,19 @@ jobs:
2727
with:
2828
python-version: "3.10"
2929

30-
- uses: tj-actions/changed-files@v41.1.1
30+
- uses: tj-actions/changed-files@v44.3.0
3131
id: changed-files
3232

3333
- if: ${{ github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'full pre-commit') }}
3434
name: Full pre-commit
35-
uses: pre-commit/action@v3.0.0
35+
uses: pre-commit/action@v3.0.1
3636
with:
3737
extra_args: --all-files
3838
- if: ${{ github.event_name != 'pull_request' || !contains(github.event.pull_request.labels.*.name, 'full pre-commit') }}
3939
name: Local pre-commit
40-
uses: pre-commit/action@v3.0.0
40+
uses: pre-commit/action@v3.0.1
4141
with:
4242
extra_args: --files ${{ steps.changed-files.outputs.all_changed_files }}
4343

4444
- if: ${{ failure() && github.event_name == 'pull_request' && github.event.pull_request.draft == false }}
45-
uses: pre-commit-ci/lite-action@v1.0.1
45+
uses: pre-commit-ci/lite-action@v1.0.2

.github/workflows/precommit_autoupdate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
private-key: ${{ secrets.PR_APP_KEY }}
2828

2929
- if: always()
30-
uses: peter-evans/create-pull-request@v5
30+
uses: peter-evans/create-pull-request@v6
3131
with:
3232
token: ${{ steps.app-token.outputs.token }}
3333
commit-message: "Automated `pre-commit` hook update"

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
with:
1818
python-version: "3.10"
1919

20-
- uses: pre-commit/action@v3.0.0
20+
- uses: pre-commit/action@v3.0.1
2121
with:
2222
extra_args: check-manifest --hook-stage manual
2323

@@ -75,14 +75,14 @@ jobs:
7575

7676
- if: matrix.os == 'windows-2022'
7777
name: Windows install
78-
uses: nick-fields/retry@v2
78+
uses: nick-fields/retry@v3
7979
with:
8080
timeout_minutes: 30
8181
max_attempts: 3
8282
command: python -m pip install "${env:WHEELNAME}[dev,all_extras,unstable_extras]"
8383
- if: matrix.os != 'windows-2022'
8484
name: Unix install
85-
uses: nick-fields/retry@v2
85+
uses: nick-fields/retry@v3
8686
with:
8787
timeout_minutes: 30
8888
max_attempts: 3

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
run: echo "NUMBA_DISABLE_JIT=1" >> $GITHUB_ENV
5959

6060
- name: Install
61-
uses: nick-fields/retry@v2
61+
uses: nick-fields/retry@v3
6262
with:
6363
timeout_minutes: 30
6464
max_attempts: 3
@@ -67,4 +67,4 @@ jobs:
6767
- name: Tests
6868
run: python -m pytest --cov=tsml_eval --cov-report=xml
6969

70-
- uses: codecov/codecov-action@v3
70+
- uses: codecov/codecov-action@v4

0 commit comments

Comments
 (0)