Skip to content

Commit 3b2cf1b

Browse files
committed
chore:update deps
1 parent 943e468 commit 3b2cf1b

File tree

8 files changed

+227
-220
lines changed

8 files changed

+227
-220
lines changed

.github/actions/test-coverage/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ runs:
3636
run: |
3737
uv run coverage json
3838
echo "COVERAGE=$(jq '.totals.percent_covered_display|tonumber' coverage.json)" >> $GITHUB_ENV
39-
- uses: mshick/add-pr-comment@dd126dd8c253650d181ad9538d8b4fa218fc31e8
39+
- uses: mshick/add-pr-comment@b8f338c590a895d50bcbfa6c5859251edc8952fc
4040
if: ${{ github.event_name == 'pull_request' }}
4141
with:
4242
message: |

.github/workflows/publish-documentation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ jobs:
1616
name: pypi
1717
url: https://pypi.org/p/fakeredis
1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v5
2020
with:
2121
persist-credentials: false
2222
- name: Set up Python
23-
uses: actions/setup-python@v5
23+
uses: actions/setup-python@v6
2424
with:
2525
python-version: "3.13"
2626
- name: Configure Git Credentials

.github/workflows/publish.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ jobs:
1616
permissions:
1717
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v5
2020
with:
2121
persist-credentials: false
2222
- name: Set up Python
23-
uses: actions/setup-python@v5
23+
uses: actions/setup-python@v6
2424
with:
2525
python-version: "3.13"
2626
- name: Install pypa/build
@@ -48,12 +48,12 @@ jobs:
4848
id-token: write # IMPORTANT: mandatory for trusted publishing
4949
steps:
5050
- name: Download all the dists
51-
uses: actions/download-artifact@v4
51+
uses: actions/download-artifact@v5
5252
with:
5353
name: python-package-distributions
5454
path: dist/
5555
- name: Publish distribution 📦 to PyPI
56-
uses: pypa/gh-action-pypi-publish@v1.12.4
56+
uses: pypa/gh-action-pypi-publish@v1.13.0
5757

5858
publish-to-testpypi:
5959
name: Publish Python 🐍 distribution 📦 to TestPyPI
@@ -70,12 +70,12 @@ jobs:
7070

7171
steps:
7272
- name: Download all the dists
73-
uses: actions/download-artifact@v4
73+
uses: actions/download-artifact@v5
7474
with:
7575
name: python-package-distributions
7676
path: dist/
7777
- name: Publish distribution 📦 to TestPyPI
78-
uses: pypa/gh-action-pypi-publish@v1.12.4
78+
uses: pypa/gh-action-pypi-publish@v1.13.0
7979
with:
8080
repository-url: https://test.pypi.org/legacy/
8181
skip-existing: true

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
permissions:
1717
contents: read
1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v5
2020
with:
2121
persist-credentials: false
2222
- name: Run Ruff Linting 🧹
@@ -67,12 +67,12 @@ jobs:
6767
version: ${{ steps.getVersion.outputs.VERSION }}
6868

6969
steps:
70-
- uses: actions/checkout@v4
70+
- uses: actions/checkout@v5
7171
with:
7272
persist-credentials: false
7373
- name: Install uv
7474
uses: astral-sh/setup-uv@v6
75-
- uses: actions/setup-python@v5
75+
- uses: actions/setup-python@v6
7676
with:
7777
cache-dependency-path: uv.lock
7878
python-version: "${{ matrix.python-version }}"

docs/changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## v4.0.7 🌈
4+
5+
### 🧰 Maintenance
6+
7+
- Improve GitHub workflow performance using ruff action @DhavalGojiya #294
8+
39
## v4.0.6 🌈
410

511
### 🐛 Bug Fixes

docs/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
mkdocs==1.6.1
2-
mkdocs-material==9.6.15
2+
mkdocs-material==9.6.19

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "django-tasks-scheduler"
7-
version = "4.0.6"
7+
version = "4.0.7"
88
description = "An async job scheduler for django using redis/valkey brokers"
99
authors = [{ name = "Daniel Moran", email = "[email protected]" }]
1010
requires-python = ">=3.10"

uv.lock

Lines changed: 207 additions & 206 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)