Skip to content

Commit b7e4622

Browse files
chore: configure renovate & update dev deps (#36)
1 parent eb91214 commit b7e4622

File tree

9 files changed

+37
-28
lines changed

9 files changed

+37
-28
lines changed

.github/workflows/check_version_availability.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
ref: "${{ github.event_name == 'pull_request_target' && github.event.pull_request.head.sha || '' }}"
1919

2020
- name: Set up Python
21-
uses: actions/setup-python@v4
21+
uses: actions/setup-python@v5
2222
with:
2323
python-version: "3.8"
2424

.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
@@ -30,7 +30,7 @@ jobs:
3030
ref: "${{ github.event_name == 'pull_request_target' && github.event.pull_request.head.sha || '' }}"
3131

3232
- name: Set up Python ${{ matrix.python-version }}
33-
uses: actions/setup-python@v4
33+
uses: actions/setup-python@v5
3434
with:
3535
python-version: ${{ matrix.python-version }}
3636

.github/workflows/lint_and_type_checks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
ref: "${{ github.event_name == 'pull_request_target' && github.event.pull_request.head.sha || '' }}"
2121

2222
- name: Set up Python ${{ matrix.python-version }}
23-
uses: actions/setup-python@v4
23+
uses: actions/setup-python@v5
2424
with:
2525
python-version: ${{ matrix.python-version }}
2626

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
uses: actions/checkout@v4
6565

6666
- name: Set up Python
67-
uses: actions/setup-python@v4
67+
uses: actions/setup-python@v5
6868
with:
6969
python-version: 3.8
7070

.github/workflows/unit_tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
ref: "${{ github.event_name == 'pull_request_target' && github.event.pull_request.head.sha || '' }}"
2222

2323
- name: Set up Python ${{ matrix.python-version }}
24-
uses: actions/setup-python@v4
24+
uses: actions/setup-python@v5
2525
with:
2626
python-version: ${{ matrix.python-version }}
2727

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: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -42,23 +42,23 @@ dependencies = [
4242

4343
[project.optional-dependencies]
4444
dev = [
45-
"build ~= 1.0.3",
46-
"filelock ~= 3.12.4",
47-
"mypy ~= 1.7.1",
48-
"pre-commit ~= 3.4.0",
49-
"pydoc-markdown ~= 4.8.2",
50-
"pytest ~= 7.4.2",
51-
"pytest-asyncio ~= 0.21.0",
52-
"pytest-cov ~= 4.1.0",
53-
"pytest-only ~= 2.0.0",
54-
"pytest-timeout ~= 2.2.0",
55-
"pytest-xdist ~= 3.3.1",
56-
"respx ~= 0.20.1",
57-
"ruff ~= 0.1.13",
58-
"twine ~= 4.0.2",
59-
"types-aiofiles ~= 23.2.0.0",
60-
"types-colorama ~= 0.4.15.12",
61-
"types-psutil ~= 5.9.5.17",
45+
"build ~= 1.2.0",
46+
"filelock ~= 3.14.0",
47+
"mypy ~= 1.10.0",
48+
"pre-commit ~= 3.5.0",
49+
"pydoc-markdown ~= 4.8.0",
50+
"pytest ~= 8.2.0",
51+
"pytest-asyncio ~= 0.23.0",
52+
"pytest-cov ~= 5.0.0",
53+
"pytest-only ~= 2.1.0",
54+
"pytest-timeout ~= 2.3.0",
55+
"pytest-xdist ~= 3.6.0",
56+
"respx ~= 0.21.0",
57+
"ruff ~= 0.4.0",
58+
"twine ~= 5.1.0",
59+
"types-aiofiles ~= 23.2.0.20240403",
60+
"types-colorama ~= 0.4.15.20240311",
61+
"types-psutil ~= 5.9.5.20240516",
6262
]
6363
scrapy = [
6464
"scrapy >= 2.11.0",

renovate.json

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

0 commit comments

Comments
 (0)