Skip to content

Commit bc61741

Browse files
Fix license_finder gem to working version (#33)
* Fix license_finder gem to working version --------- Signed-off-by: Dennis Meister <[email protected]>
1 parent 3d631e4 commit bc61741

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.devcontainer/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ RUN pip3 install --upgrade pip && pip3 --disable-pip-version-check --no-cache-di
3434
# [Optional] Uncomment this line to install global node packages.
3535
# RUN su vscode -c "source /usr/local/share/nvm/nvm.sh && npm install -g <your-package-here>" 2>&1
3636

37-
RUN apt-get update && apt-get install -y ruby && gem install license_finder && gembin=`(gem env | sed -n "s/.*EXECUTABLE DIRECTORY: \(.*\)/\1/p")` && export PATH=$gembin:$PATH
37+
RUN apt-get update && apt-get install -y ruby && gem install license_finder -v 7.1.0 && gembin=`(gem env | sed -n "s/.*EXECUTABLE DIRECTORY: \(.*\)/\1/p")` && export PATH=$gembin:$PATH
3838

3939
RUN curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf | sh -s -- -y
4040

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
pip install pytest pytest-cov
6060
su vscode -c "umask 0002 && . /usr/local/share/nvm/nvm.sh && nvm install lts/* 2>&1"
6161
apt-get update && apt-get install -y ruby
62-
gem install license_finder && gembin=`(gem env | sed -n "s/.*EXECUTABLE DIRECTORY: \(.*\)/\1/p")`
62+
gem install license_finder -v 7.1.0 && gembin=`(gem env | sed -n "s/.*EXECUTABLE DIRECTORY: \(.*\)/\1/p")`
6363
export PATH=$gembin:$PATH
6464
curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf | sh -s -- -y
6565

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ COPY ./src/ /
2323
RUN apt update \
2424
&& apt install -y git \
2525
&& apt install -y ruby \
26-
&& gem install license_finder \
26+
&& gem install license_finder -v 7.1.0 \
2727
&& pip3 install -r /requirements.txt
2828

2929
# Install conan to handle c++ dependencies

NOTICE-3RD-PARTY-CONTENT.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@
66
|certifi|2024.2.2|Mozilla Public License 2.0|
77
|charset-normalizer|3.3.2|MIT|
88
|gitdb|4.0.11|BSD|
9-
|GitPython|3.1.41|New BSD|
10-
|idna|3.6|BSD|
9+
|GitPython|3.1.43|New BSD|
10+
|idna|3.7|BSD|
1111
|PyYAML|6.0.1|MIT|
1212
|requests|2.31.0|Apache 2.0|
1313
|smmap|5.0.1|BSD|
1414
|str2bool|1.1|BSD|
15-
|types-PyYAML|6.0.12.12|Apache 2.0|
16-
|types-requests|2.31.0.20240125|Apache 2.0|
17-
|types-setuptools|69.0.0.20240125|Apache 2.0|
18-
|urllib3|2.2.0|MIT|
15+
|types-PyYAML|6.0.12.20240311|Apache 2.0|
16+
|types-requests|2.31.0.20240406|Apache 2.0|
17+
|types-setuptools|69.5.0.20240513|Apache 2.0|
18+
|urllib3|2.2.1|MIT|
1919
## Workflows
2020
| Dependency | Version | License |
2121
|:-----------|:-------:|--------:|

0 commit comments

Comments
 (0)