Skip to content

Commit

Permalink
Update GitHub Actions to use 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
chosak committed Jan 13, 2025
1 parent 758daad commit 60defae
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.13

- name: Set up Node
uses: actions/setup-node@v4
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.13

- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/functional-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.13

- name: Install dependencies
run: |
Expand Down
28 changes: 14 additions & 14 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@ exclude: .+\/migrations\/.+\.py
default_language_version:
python: python3.8
repos:
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: v0.4.5
hooks:
# Run the linter.
- id: ruff
args: ['--fix']
# Run the formatter.
- id: ruff-format
- repo: https://github.com/PyCQA/bandit
rev: 1.7.8
hooks:
- id: bandit
args: ['-c', 'pyproject.toml', '--recursive']
additional_dependencies: ['bandit[toml]']
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: v0.4.5
hooks:
# Run the linter.
- id: ruff
args: ['--fix']
# Run the formatter.
- id: ruff-format
- repo: https://github.com/PyCQA/bandit
rev: 1.7.8
hooks:
- id: bandit
args: ['-c', 'pyproject.toml', '--recursive']
additional_dependencies: ['bandit[toml]']

0 comments on commit 60defae

Please sign in to comment.