Skip to content
This repository has been archived by the owner on Sep 8, 2024. It is now read-only.

[pre-commit.ci] pre-commit autoupdate #198

Closed
wants to merge 26 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
4366d09
chore: update poetry.lock
jshwi Apr 11, 2024
b541848
chore: update dev dependencies
jshwi Feb 1, 2024
e4ae0ea
chore(deps): bump github/codeql-action from 2 to 3
dependabot[bot] Apr 11, 2024
408d408
chore(deps): bump codecov/codecov-action from 3 to 4
dependabot[bot] Apr 11, 2024
bb63139
chore(deps): bump actions/setup-python from 4 to 5
dependabot[bot] Apr 11, 2024
b3db6bf
chore(deps): bump sphinx-click from 4.4.0 to 5.1.0
dependabot[bot] Apr 11, 2024
4bdf3aa
chore(deps): bump sphinx-immaterial from 0.11.7 to 0.11.11
dependabot[bot] Apr 11, 2024
b590ad4
chore(deps-dev): bump pytest-sugar from 0.9.7 to 1.0.0
dependabot[bot] Apr 11, 2024
1071d14
chore(deps): bump sphinx-toolbox from 3.4.0 to 3.5.0
dependabot[bot] Apr 11, 2024
1b37ca6
chore(deps-dev): bump templatest from 0.8.0 to 0.10.1
dependabot[bot] Apr 11, 2024
aedeb0e
chore(deps): bump sphinx-click from 4.4.0 to 5.1.0
dependabot[bot] Apr 11, 2024
0e62ba7
[pre-commit.ci] pre-commit autoupdate
pre-commit-ci[bot] Apr 15, 2024
599154f
chore(deps-dev): bump pytest-xdist from 3.5.0 to 3.6.0
dependabot[bot] Apr 19, 2024
132663b
ci: change macos version
jshwi Apr 25, 2024
bbd8876
chore(deps-dev): bump freezegun from 1.4.0 to 1.5.0
dependabot[bot] Apr 23, 2024
84ba63d
[pre-commit.ci] pre-commit autoupdate
pre-commit-ci[bot] Apr 29, 2024
8f8c680
chore(deps-dev): bump pytest-xdist from 3.6.0 to 3.6.1
dependabot[bot] Apr 29, 2024
e9b5b7e
fix: Dockerfile to reduce vulnerabilities
snyk-bot May 9, 2024
66987f3
[pre-commit.ci] pre-commit autoupdate
pre-commit-ci[bot] May 13, 2024
a7474cc
chore(deps-dev): bump freezegun from 1.5.0 to 1.5.1
dependabot[bot] May 13, 2024
0bedfa1
chore(deps): bump sphinx-click from 5.1.0 to 5.2.2
dependabot[bot] May 14, 2024
72cb0ce
chore(deps): bump sphinx-click from 5.1.0 to 6.0.0
dependabot[bot] May 15, 2024
c2a30e6
chore(deps): bump sphinx-click from 5.1.0 to 6.0.0
dependabot[bot] May 16, 2024
7a76e34
fix: docs/requirements.txt to reduce vulnerabilities
snyk-bot May 21, 2024
47a0c00
---
dependabot[bot] May 21, 2024
722b1fd
[pre-commit.ci] pre-commit autoupdate
pre-commit-ci[bot] Jul 29, 2024
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
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- "3.9"
- "3.10"
os:
- macos-latest
- macos-12
- ubuntu-latest
steps:
- name: Checkout build
Expand All @@ -28,7 +28,7 @@ jobs:
run: pipx install poetry
- name: Setup Python
id: setup-python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: poetry
Expand All @@ -43,4 +43,4 @@ jobs:
run: poetry run pyaud audit
- name: Upload coverage
id: upload-coverage
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
6 changes: 3 additions & 3 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
- name: Autobuild
uses: github/codeql-action/autobuild@v2
uses: github/codeql-action/autobuild@v3
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3
28 changes: 14 additions & 14 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ repos:
entry: poetry run pyaud copyright-year
pass_filenames: false
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: "v4.4.0"
rev: "v4.6.0"
hooks:
- id: check-added-large-files
- id: check-ast
Expand Down Expand Up @@ -135,28 +135,28 @@ repos:
args:
- "--remove"
- repo: https://github.com/ikamensh/flynt
rev: "0.77"
rev: "1.0.1"
hooks:
- id: flynt
args:
- "--line-length=79"
- "--transform-concats"
- repo: https://github.com/pre-commit/mirrors-prettier
rev: "v3.0.0-alpha.4"
rev: "v4.0.0-alpha.8"
hooks:
- id: prettier
args:
- "--write"
- repo: https://github.com/PyCQA/docformatter
rev: "v1.5.1"
rev: "v1.7.5"
hooks:
- id: docformatter
args:
- "--recursive"
- "--wrap-summaries=72"
- "--in-place"
- repo: https://github.com/pappasam/toml-sort
rev: "v0.22.4"
rev: "v0.23.1"
hooks:
- id: toml-sort
args:
Expand All @@ -168,50 +168,50 @@ repos:
- id: rst-directive-colons
- id: rst-inline-touching-normal
- repo: https://github.com/jshwi/constcheck
rev: "v0.8.1"
rev: "v0.9.0"
hooks:
- id: constcheck
- repo: https://github.com/pre-commit/pre-commit
rev: "v3.1.0"
rev: "v3.8.0"
hooks:
- id: validate_manifest
- repo: https://github.com/siderolabs/conform
rev: "v0.1.0-alpha.27"
rev: "v0.1.0-alpha.30"
hooks:
- id: conform
- repo: https://github.com/PyCQA/bandit
rev: "1.7.4"
rev: "1.7.9"
hooks:
- id: bandit
args:
- "--recursive"
- "-lll"
- repo: https://github.com/asottile/pyupgrade
rev: "v3.3.1"
rev: "v3.17.0"
hooks:
- id: pyupgrade
args:
- "--py38-plus"
- repo: https://github.com/PyCQA/flake8
rev: "6.0.0"
rev: "7.1.0"
hooks:
- id: flake8
exclude: ^(.*\/)?_?templates\.py
additional_dependencies:
- flake8-bugbear==22.12.6
- repo: https://github.com/adrienverge/yamllint.git
rev: "v1.29.0"
rev: "v1.35.1"
hooks:
- id: yamllint
args:
- "--config-data={rules: {line-length: {max: 79}}}"
- repo: https://github.com/psf/black
rev: "23.1.0"
rev: "24.4.2"
hooks:
- id: black
additional_dependencies:
- tomli==2.0.1
- repo: https://github.com/pycqa/isort
rev: "5.12.0"
rev: "5.13.2"
hooks:
- id: isort
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11-alpine AS playground
FROM python:3.13.0b1-alpine AS playground
ENV USER=hin VENV=/opt/venv PATH=$VENV/bin:$PATH
WORKDIR /home/$USER
COPY ./hin /opt/hin/hin
Expand Down
7 changes: 4 additions & 3 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
sphinx-click==4.4.0
sphinx-immaterial==0.11.7
sphinx-toolbox==3.4.0
requests>=2.32.0 # not directly required, pinned by Snyk to avoid a vulnerability
sphinx-click==6.0.0
sphinx-immaterial==0.11.11
sphinx-toolbox==3.5.0
sphinxcontrib-fulltoc==1.2.0
sphinxcontrib-programoutput==0.17
Loading
Loading