Skip to content

Commit 5e6f741

Browse files
authored
chore: update dev deps and gh actions pipelines (#226)
1 parent 55dd033 commit 5e6f741

10 files changed

+28
-25
lines changed

.github/workflows/check_async_docstrings.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
uses: actions/checkout@v4
1414

1515
- name: Set up Python
16-
uses: actions/setup-python@v4
16+
uses: actions/setup-python@v5
1717
with:
1818
python-version: 3.8
1919

.github/workflows/check_version_availability.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
uses: actions/checkout@v4
1515

1616
- name: Set up Python
17-
uses: actions/setup-python@v4
17+
uses: actions/setup-python@v5
1818
with:
1919
python-version: "3.8"
2020

.github/workflows/docs.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
token: ${{ secrets.APIFY_SERVICE_ACCOUNT_GITHUB_TOKEN }}
2424

2525
- name: Set up Node.js
26-
uses: actions/setup-node@v3
26+
uses: actions/setup-node@v4
2727
with:
2828
node-version: 18
2929
cache: npm
@@ -46,7 +46,7 @@ jobs:
4646
git push
4747
4848
- name: Set up Python
49-
uses: actions/setup-python@v4
49+
uses: actions/setup-python@v5
5050
with:
5151
python-version: 3.8
5252

@@ -61,15 +61,15 @@ jobs:
6161
working-directory: ./website
6262

6363
- name: Set up GitHub Pages
64-
uses: actions/configure-pages@v3
64+
uses: actions/configure-pages@v5
6565

6666
- name: Upload GitHub Pages artifact
67-
uses: actions/upload-pages-artifact@v2
67+
uses: actions/upload-pages-artifact@v3
6868
with:
6969
path: ./website/build
7070

7171
- name: Deploy artifact to GitHub Pages
72-
uses: actions/deploy-pages@v2
72+
uses: actions/deploy-pages@v4
7373

7474
- name: Invalidate CloudFront cache
7575
run: gh workflow run invalidate.yaml --repo apify/apify-docs-private

.github/workflows/integration_tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
uses: actions/checkout@v4
2525

2626
- name: Set up Python ${{ matrix.python-version }}
27-
uses: actions/setup-python@v4
27+
uses: actions/setup-python@v5
2828
with:
2929
python-version: ${{ matrix.python-version }}
3030

.github/workflows/lint_and_type_checks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
uses: actions/checkout@v4
1717

1818
- name: Set up Python ${{ matrix.python-version }}
19-
uses: actions/setup-python@v4
19+
uses: actions/setup-python@v5
2020
with:
2121
python-version: ${{ matrix.python-version }}
2222

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
uses: actions/checkout@v4
7070

7171
- name: Set up Python
72-
uses: actions/setup-python@v4
72+
uses: actions/setup-python@v5
7373
with:
7474
python-version: 3.8
7575

.github/workflows/unit_tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
uses: actions/checkout@v4
1818

1919
- name: Set up Python ${{ matrix.python-version }}
20-
uses: actions/setup-python@v4
20+
uses: actions/setup-python@v5
2121
with:
2222
python-version: ${{ matrix.python-version }}
2323

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ DIRS_WITH_CODE = src tests scripts
66
INTEGRATION_TESTS_CONCURRENCY = 1
77

88
clean:
9-
rm -rf build dist .mypy_cache .pytest_cache src/*.egg-info __pycache__
9+
rm -rf build dist .mypy_cache .pytest_cache .ruff_cache src/*.egg-info __pycache__
1010

1111
install-dev:
1212
python3 -m pip install --upgrade pip

pyproject.toml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -32,19 +32,19 @@ dependencies = [
3232

3333
[project.optional-dependencies]
3434
dev = [
35-
"build ~= 1.0.3",
36-
"mypy ~= 1.7.0",
37-
"pre-commit ~= 3.4.0",
38-
"pydoc-markdown ~= 4.8.2",
39-
"pytest ~= 7.4.2",
40-
"pytest-asyncio ~= 0.21.0",
41-
"pytest-cov ~= 4.1.0",
42-
"pytest-only ~= 2.0.0",
43-
"pytest-timeout ~= 2.2.0",
44-
"pytest-xdist ~= 3.3.1",
45-
"redbaron ~= 0.9.2",
46-
"ruff ~= 0.1.13",
47-
"twine ~= 4.0.2",
35+
"build ~= 1.2.0",
36+
"mypy ~= 1.10.0",
37+
"pre-commit ~= 3.5.0",
38+
"pydoc-markdown ~= 4.8.0",
39+
"pytest ~= 8.0.0",
40+
"pytest-asyncio ~= 0.23.0",
41+
"pytest-cov ~= 5.0.0",
42+
"pytest-only ~= 2.1.0",
43+
"pytest-timeout ~= 2.3.0",
44+
"pytest-xdist ~= 3.6.0",
45+
"redbaron ~= 0.9.0",
46+
"ruff ~= 0.4.0",
47+
"twine ~= 5.0.0",
4848
]
4949

5050
[project.urls]

renovate.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,8 @@
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
33
"extends": [
44
"config:recommended"
5+
],
6+
"ignorePaths": [
7+
"website/**"
58
]
69
}

0 commit comments

Comments
 (0)