Skip to content

Maintenance #26

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 7, 2023
Merged
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
16 changes: 0 additions & 16 deletions .github/actions/gh-action-pypi-publish-1.6.4/.github/FUNDING.yml

This file was deleted.

14 changes: 0 additions & 14 deletions .github/actions/gh-action-pypi-publish-1.6.4/.github/SECURITY.rst

This file was deleted.

This file was deleted.

51 changes: 0 additions & 51 deletions .github/actions/gh-action-pypi-publish-1.6.4/action.yml

This file was deleted.

70 changes: 0 additions & 70 deletions .github/actions/gh-action-pypi-publish-1.6.4/twine-upload.sh

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,27 +1,28 @@
---
ci:
autoupdate_schedule: quarterly
default_language_version: python3.11

repos:
- repo: https://github.com/asottile/add-trailing-comma.git
rev: v2.3.0
rev: v2.4.0
hooks:
- id: add-trailing-comma

- repo: https://github.com/PyCQA/isort.git
rev: 5.10.1
rev: 5.12.0
hooks:
- id: isort
args:
- --honor-noqa

- repo: https://github.com/Lucas-C/pre-commit-hooks.git
rev: v1.3.1
rev: v1.5.1
hooks:
- id: remove-tabs

- repo: https://github.com/python-jsonschema/check-jsonschema.git
rev: 0.18.3
rev: 0.22.0
hooks:
- id: check-github-actions
- id: check-github-workflows
Expand All @@ -36,7 +37,7 @@ repos:
- id: check-readthedocs

- repo: https://github.com/pre-commit/pre-commit-hooks.git
rev: v4.3.0
rev: v4.4.0
hooks:
# Side-effects:
- id: end-of-file-fixer
Expand All @@ -61,12 +62,12 @@ repos:
language_version: python3

- repo: https://github.com/codespell-project/codespell
rev: v2.2.1
rev: v2.2.4
hooks:
- id: codespell

- repo: https://github.com/adrienverge/yamllint.git
rev: v1.28.0
rev: v1.30.0
hooks:
- id: yamllint
files: \.(yaml|yml)$
Expand Down Expand Up @@ -94,7 +95,6 @@ repos:
additional_dependencies:
- flake8-2020 ~= 1.7.0
- flake8-pytest-style ~= 1.6.0
language_version: python3

- repo: https://github.com/PyCQA/flake8.git
# NOTE: This is kept at v4 for until WPS starts supporting flake v5.
Expand All @@ -105,11 +105,15 @@ repos:
name: flake8 WPS-only
args:
- --ignore
# NOTE: WPS326: Found implicit string concatenation
# NOTE: WPS332: Found walrus operator
- >-
WPS102,
WPS110,
WPS111,
WPS305,
WPS326,
WPS332,
WPS347,
WPS360,
WPS421,
Expand All @@ -123,11 +127,10 @@ repos:
- --select
- WPS
additional_dependencies:
- wemake-python-styleguide ~= 0.16.1
language_version: python3
- wemake-python-styleguide ~= 0.17.0

- repo: https://github.com/PyCQA/pylint.git
rev: v2.15.3
rev: v3.0.0a6
hooks:
- id: pylint
args:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ WORKDIR /app
COPY LICENSE.md .
COPY twine-upload.sh .
COPY print-hash.py .
COPY oidc-exchange.py .

RUN chmod +x twine-upload.sh
ENTRYPOINT ["/app/twine-upload.sh"]
Loading