Skip to content
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

Bump actions/download-artifact from 2 to 3 #11

Merged
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
44 changes: 24 additions & 20 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,30 +4,34 @@
"dockerfile": "Dockerfile",
"context": "..",
"args": {
"VARIANT": "3.9",
"POETRY_VERSION": "1.1.11",
"VARIANT": "3.10",
"POETRY_VERSION": "1.4",
},
},

"settings": {
"python.defaultInterpreterPath": ".venv/bin/python",
"python.formatting.blackPath": ".venv/bin/black",
"python.formatting.provider": "black",
"python.linting.enabled": true,
"python.linting.flake8Enabled": true,
"python.linting.flake8Path": ".venv/bin/flake8",
"python.linting.pylintEnabled": false,
},
"customizations": {
"vscode": {
"settings": {
"python.defaultInterpreterPath": ".venv/bin/python",
"python.formatting.blackPath": ".venv/bin/black",
"python.formatting.provider": "black",
"python.linting.enabled": true,
"python.linting.flake8Enabled": true,
"python.linting.flake8Path": ".venv/bin/flake8",
"python.linting.pylintEnabled": false,
},

"extensions": [
"bungcip.better-toml",
"davidanson.vscode-markdownlint",
"esbenp.prettier-vscode",
"ms-python.python",
"ms-python.vscode-pylance",
"ms-vscode.cpptools-extension-pack",
"njpwerner.autodocstring",
],
"extensions": [
"bungcip.better-toml",
"davidanson.vscode-markdownlint",
"esbenp.prettier-vscode",
"ms-python.python",
"ms-python.vscode-pylance",
"ms-vscode.cpptools-extension-pack",
"njpwerner.autodocstring",
],
},
},

"postCreateCommand": "poetry install --no-root && poetry run pre-commit install",

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
needs: [test, build]
steps:
- name: Download distribution files
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: dist
path: ./dist
Expand Down
12 changes: 6 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.0.1
rev: v4.4.0
hooks:
- id: check-added-large-files
- id: check-merge-conflict
Expand All @@ -11,15 +11,15 @@ repos:
- id: forbid-new-submodules
- id: trailing-whitespace
- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.30.0
rev: v0.33.0
hooks:
- id: markdownlint
- repo: https://github.com/pre-commit/mirrors-clang-format
rev: v13.0.0
rev: v16.0.2
hooks:
- id: clang-format
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v2.4.1
rev: v3.0.0-alpha.9-for-vscode
hooks:
- id: prettier
args:
Expand All @@ -32,12 +32,12 @@ repos:
hooks:
- id: dockerfilelint
- repo: https://github.com/psf/black
rev: 21.11b1
rev: 23.3.0
hooks:
- id: black
language_version: python3.9
- repo: https://github.com/PyCQA/flake8
rev: 4.0.1
rev: 6.0.0
hooks:
- id: flake8
- repo: meta
Expand Down
Loading