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 protobuf from 2.28.0 to 3.7.2 in /testbench/multilang/rust-proj #38

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
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,6 @@
// Comment out to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
"remoteUser": "vscode",
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2.7.1": {}
"ghcr.io/devcontainers/features/docker-in-docker:2.12.0": {}
}
}
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,22 +27,22 @@ repos:
- id: check-merge-conflict

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.1.13
rev: v0.11.0
hooks:
- id: ruff
args: [--fix]
- id: ruff-format

- repo: https://github.com/pre-commit/mirrors-mypy
rev: "v1.8.0"
rev: "v1.15.0"
hooks:
- id: mypy
args: [.]
language: system
pass_filenames: false

- repo: https://github.com/Lucas-C/pre-commit-hooks
rev: v1.5.4
rev: v1.5.5
hooks:
- id: insert-license
files: '.*\.(py|pyi|yaml|yml|sh)$'
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

setuptools.setup(
name="licensevalidator",
version="1.2.5",
version="1.2.6",
description="A validator for dependency licenses",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down
2 changes: 1 addition & 1 deletion src/action.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def get_args():
parser.add_argument(
"config_file_path",
type=str,
help="Path to the license check configuration." "(Relative to repository root)",
help="Path to the license check configuration (relative to repository root)",
)
parser.add_argument(
"--github-token",
Expand Down
1 change: 0 additions & 1 deletion test/test_checklicenses.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@

"""Unit tests for checklicenses."""


from licensevalidator.checklicenses import check_licenses
from licensevalidator.lib.dependency import DependencyInfo

Expand Down
1 change: 0 additions & 1 deletion test/test_licensevalidator.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@

"""Integration tests for license validator."""


from licensevalidator.licensevalidator import validate_used_licenses


Expand Down
67 changes: 59 additions & 8 deletions testbench/multilang/rust-proj/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion testbench/multilang/rust-proj/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
protobuf = "~2"
protobuf = "~3"
futures = "~0.3"
67 changes: 59 additions & 8 deletions testbench/rust/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion testbench/rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
protobuf = "~2"
protobuf = "~3"
futures = "~0.3"
Loading