Skip to content

Commit

Permalink
Update several dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
fniessink committed Jun 13, 2024
1 parent 9a43f03 commit 5249ab3
Show file tree
Hide file tree
Showing 32 changed files with 111 additions and 167 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/api_server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/[email protected].6
- uses: actions/[email protected].7
- name: Set up Python
uses: actions/setup-python@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/application-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/[email protected].6
- uses: actions/[email protected].7
- name: Run application tests
env:
QUALITY_TIME_VERSION: v5.13.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/[email protected].6
uses: actions/[email protected].7

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/collector.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/[email protected].6
- uses: actions/[email protected].7
- name: Set up Python
uses: actions/setup-python@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/[email protected].6
- uses: actions/[email protected].7
- name: Set up Python
uses: actions/setup-python@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/feature-tests-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/[email protected].6
- uses: actions/[email protected].7
- name: Set up Python
uses: actions/setup-python@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/feature-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/[email protected].6
- uses: actions/[email protected].7
- name: Set up Python
uses: actions/setup-python@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
node-version: [20.x]

steps:
- uses: actions/[email protected].6
- uses: actions/[email protected].7
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/[email protected]
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/hadolint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- component: testdata

steps:
- uses: actions/[email protected].6
- uses: actions/[email protected].7
- name: Hadolint ${{ matrix.component }}
uses: hadolint/[email protected]
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/notifier.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/[email protected].6
- uses: actions/[email protected].7
- name: Set up Python
uses: actions/setup-python@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/[email protected].6
uses: actions/[email protected].7
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/shared_code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/[email protected].6
- uses: actions/[email protected].7
- name: Set up Python
uses: actions/setup-python@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sonarcloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
steps:
- uses: actions/[email protected].6
- uses: actions/[email protected].7
if: env.SONAR_TOKEN != null
with:
fetch-depth: 0 # Disabling shallow clone is recommended for improving relevancy of reporting
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/trivy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
docker_file: Dockerfile
steps:
- name: Checkout code
uses: actions/[email protected].6
uses: actions/[email protected].7

- name: Build image from Dockerfile
run: |
Expand Down
4 changes: 2 additions & 2 deletions components/api_server/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ dev = [
"pip==24.0",
"pipx==1.6.0",
"pip-tools==7.4.1", # To add hashes to requirements
"pydantic==2.7.3", # Needed for importing the data model in the tests from the shared code component
"pydantic==2.7.4", # Needed for importing the data model in the tests from the shared code component
"types-cryptography==3.3.23.2",
"types-ldap3==2.9.13.20240205",
"types-requests==2.32.0.20240602",
"unittest-xml-reporting==3.2.0", # Needed to generate JUnit XML output for Sonarcloud.io
]
tools = [
"bandit==1.7.8",
"bandit==1.7.9",
"fixit==2.1.0",
"mypy==1.10.0",
"pip-audit==2.7.3",
Expand Down
6 changes: 3 additions & 3 deletions components/api_server/requirements/requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -556,9 +556,9 @@ pycparser==2.22 \
--hash=sha256:491c8be9c040f5390f5bf44a5b07752bd07f56edf992381b05c701439eec10f6 \
--hash=sha256:c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc
# via cffi
pydantic==2.7.3 \
--hash=sha256:c46c76a40bb1296728d7a8b99aa73dd70a48c3510111ff290034f860c99c419e \
--hash=sha256:ea91b002777bf643bb20dd717c028ec43216b24a6001a280f83877fd2655d0b4
pydantic==2.7.4 \
--hash=sha256:0c84efd9548d545f63ac0060c1e4d39bb9b14db8b3c0652338aecc07b5adec52 \
--hash=sha256:ee8538d41ccb9c0a9ad3e0e5f07bf15ed8015b481ced539a1759d8cc89ae90d0
# via api_server (pyproject.toml)
pydantic-core==2.18.4 \
--hash=sha256:01dd777215e2aa86dfd664daed5957704b769e726626393438f9c87690ce78c3 \
Expand Down
4 changes: 2 additions & 2 deletions components/collector/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ dev = [
"pip==24.0",
"pipx==1.6.0",
"pip-tools==7.4.1", # To add hashes to requirements
"pydantic==2.7.3", # Needed for importing the data model in the tests from the shared code component
"pydantic==2.7.4", # Needed for importing the data model in the tests from the shared code component
"types-beautifulsoup4==4.12.0.20240511",
"types-python-dateutil==2.9.0.20240316",
"unittest-xml-reporting==3.2.0", # Needed to generate JUnit XML output for Sonarcloud.io
]
tools = [
"bandit==1.7.8",
"bandit==1.7.9",
"fixit==2.1.0",
"mypy==1.10.0",
"pip-audit==2.7.3",
Expand Down
6 changes: 3 additions & 3 deletions components/collector/requirements/requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -527,9 +527,9 @@ platformdirs==4.2.2 \
--hash=sha256:2d7a1657e36a80ea911db832a8a6ece5ee53d8de21edd5cc5879af6530b1bfee \
--hash=sha256:38b7b51f512eed9e84a22788b4bce1de17c0adb134d6becb09836e37d8654cd3
# via pipx
pydantic==2.7.3 \
--hash=sha256:c46c76a40bb1296728d7a8b99aa73dd70a48c3510111ff290034f860c99c419e \
--hash=sha256:ea91b002777bf643bb20dd717c028ec43216b24a6001a280f83877fd2655d0b4
pydantic==2.7.4 \
--hash=sha256:0c84efd9548d545f63ac0060c1e4d39bb9b14db8b3c0652338aecc07b5adec52 \
--hash=sha256:ee8538d41ccb9c0a9ad3e0e5f07bf15ed8015b481ced539a1759d8cc89ae90d0
# via collector (pyproject.toml)
pydantic-core==2.18.4 \
--hash=sha256:01dd777215e2aa86dfd664daed5957704b769e726626393438f9c87690ce78c3 \
Expand Down
128 changes: 36 additions & 92 deletions components/frontend/package-lock.json

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

2 changes: 1 addition & 1 deletion components/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"react-timeago": "^7.2.0",
"react-toastify": "^10.0.5",
"semantic-ui-react": "^2.1.5",
"use-local-storage-state": "^19.3.0",
"use-local-storage-state": "^19.3.1",
"victory": "^37.0.2"
},
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions components/notifier/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ dev = [
"pip==24.0",
"pipx==1.6.0",
"pip-tools==7.4.1", # To add hashes to requirements
"pydantic==2.7.3", # Needed for importing the data model in the tests from the shared code component
"pydantic==2.7.4", # Needed for importing the data model in the tests from the shared code component
"unittest-xml-reporting==3.2.0", # Needed to generate JUnit XML output for Sonarcloud.io
]
tools = [
"bandit==1.7.8",
"bandit==1.7.9",
"fixit==2.1.0",
"mypy==1.10.0",
"pip-audit==2.7.3",
Expand Down
Loading

0 comments on commit 5249ab3

Please sign in to comment.