Compare commits

..

12 Commits
v1.2.0 ... main

Author SHA1 Message Date
ElBe
21d4ba85e9
Merge pull request #5 from ElBe-Development/dependabot/github_actions/actions/setup-python-5
Bump actions/setup-python from 4 to 5
2025-01-24 12:53:05 +01:00
ElBe
1addf7b72a
Merge pull request #11 from ElBe-Development/dependabot/pip/pre-commit-4.1.0
Bump pre-commit from 3.5.0 to 4.1.0
2025-01-23 21:28:44 +01:00
ElBe
7251484eaa
Merge pull request #7 from ElBe-Development/dependabot/github_actions/actions/dependency-review-action-4
Bump actions/dependency-review-action from 3 to 4
2025-01-23 21:26:25 +01:00
dependabot[bot]
1a749cb6ab
Bump pre-commit from 3.5.0 to 4.1.0
Bumps [pre-commit](https://github.com/pre-commit/pre-commit) from 3.5.0 to 4.1.0.
- [Release notes](https://github.com/pre-commit/pre-commit/releases)
- [Changelog](https://github.com/pre-commit/pre-commit/blob/main/CHANGELOG.md)
- [Commits](https://github.com/pre-commit/pre-commit/compare/v3.5.0...v4.1.0)

---
updated-dependencies:
- dependency-name: pre-commit
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-01-23 20:26:23 +00:00
ElBe
1ac8dcf6a5
Merge pull request #8 from ElBe-Development/dependabot/github_actions/codecov/codecov-action-4
Bump codecov/codecov-action from 3 to 4
2025-01-23 21:26:03 +01:00
ElBe
3d649300c7
Merge pull request #4 from ElBe-Development/dependabot/github_actions/actions/labeler-5
Bump actions/labeler from 4 to 5
2025-01-23 21:24:35 +01:00
dependabot[bot]
b9a8a54232
Bump codecov/codecov-action from 3 to 4
Bumps [codecov/codecov-action](https://github.com/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)

---
updated-dependencies:
- dependency-name: codecov/codecov-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-02-01 13:04:46 +00:00
dependabot[bot]
a79508348c
Bump actions/dependency-review-action from 3 to 4
Bumps [actions/dependency-review-action](https://github.com/actions/dependency-review-action) from 3 to 4.
- [Release notes](https://github.com/actions/dependency-review-action/releases)
- [Commits](https://github.com/actions/dependency-review-action/compare/v3...v4)

---
updated-dependencies:
- dependency-name: actions/dependency-review-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-01-19 12:33:50 +00:00
dependabot[bot]
152f973edd
Bump actions/setup-python from 4 to 5
Bumps [actions/setup-python](https://github.com/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: actions/setup-python
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-12-06 12:54:42 +00:00
dependabot[bot]
39228823bd
Bump actions/labeler from 4 to 5
Bumps [actions/labeler](https://github.com/actions/labeler) from 4 to 5.
- [Release notes](https://github.com/actions/labeler/releases)
- [Commits](https://github.com/actions/labeler/compare/v4...v5)

---
updated-dependencies:
- dependency-name: actions/labeler
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-12-05 12:41:40 +00:00
ElBe
57bb936433
Bump pre-commit from 3.4.0 to 3.5.0
Bump pre-commit from 3.4.0 to 3.5.0
2023-10-23 20:18:53 +02:00
dependabot[bot]
f2caa5c3b1
Bump pre-commit from 3.4.0 to 3.5.0
Bumps [pre-commit](https://github.com/pre-commit/pre-commit) from 3.4.0 to 3.5.0.
- [Release notes](https://github.com/pre-commit/pre-commit/releases)
- [Changelog](https://github.com/pre-commit/pre-commit/blob/main/CHANGELOG.md)
- [Commits](https://github.com/pre-commit/pre-commit/compare/v3.4.0...v3.5.0)

---
updated-dependencies:
- dependency-name: pre-commit
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-10-16 12:44:34 +00:00
4 changed files with 5 additions and 5 deletions

View File

@ -9,6 +9,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

View File

@ -18,7 +18,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies from txt files
@ -43,4 +43,4 @@ jobs:
if: ${{ github.event_name != 'push' }}
- name: Dependency Review
if: ${{ github.event_name != 'push' }}
uses: actions/dependency-review-action@v3
uses: actions/dependency-review-action@v4

View File

@ -20,6 +20,6 @@ jobs:
pull-requests: write
steps:
- uses: actions/labeler@v4
- uses: actions/labeler@v5
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"

View File

@ -1 +1 @@
pre-commit==3.4.0; python_version>='3.8'
pre-commit==4.1.0; python_version>='3.8'