Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/lint_and_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ jobs:
name: Python lint check
uses: apify/workflows/.github/workflows/python_lint_check.yaml@main
with:
python_versions: '["3.10", "3.11", "3.12", "3.13"]'
python_versions: '["3.10", "3.11", "3.12", "3.13", "3.14"]'

python_type_check:
name: Python type check
uses: apify/workflows/.github/workflows/python_type_check.yaml@main
with:
python_versions: '["3.10", "3.11", "3.12", "3.13"]'
python_versions: '["3.10", "3.11", "3.12", "3.13", "3.14"]'

lint_and_test:
name: Lint and test (without templates)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_llm_ai_node_templates.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
name: Test LLM AI Node.js templates
strategy:
matrix:
os: [ubuntu-22.04, windows-latest]
os: [ubuntu-24.04, windows-latest]
node-version: [22]
fail-fast: false
runs-on: ${{ matrix.os }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_llm_ai_python_templates.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ jobs:
name: Test LLM AI Python templates
strategy:
matrix:
os: [ubuntu-22.04, windows-latest]
python-version: ['3.10', '3.11', '3.12', '3.13']
os: [ubuntu-24.04, windows-latest]
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
fail-fast: false
runs-on: ${{ matrix.os }}
timeout-minutes: 60
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_node_templates.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
name: Test Node.js templates
strategy:
matrix:
os: [ubuntu-22.04, windows-latest]
os: [ubuntu-24.04, windows-latest]
node-version: [20, 22, 24]
fail-fast: false
runs-on: ${{ matrix.os }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_python_templates.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ jobs:
name: Test Python templates
strategy:
matrix:
os: [ubuntu-22.04, windows-latest]
python-version: ['3.10', '3.11', '3.12', '3.13']
os: [ubuntu-24.04, windows-latest]
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
runs-on: ${{ matrix.os }}
timeout-minutes: 120

Expand Down
Loading