Skip to content

Commit 77d5891

Browse files
author
Martin Rohrmeier
committed
chore: merge with latest main and update DEPENDENCIES
2 parents e322d23 + 463c53d commit 77d5891

File tree

23 files changed

+1949
-3505
lines changed

23 files changed

+1949
-3505
lines changed

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777

7878
# Initializes the CodeQL tools for scanning.
7979
- name: Initialize CodeQL
80-
uses: github/codeql-action/init@8214744c546c1e5c8f03dde8fab3a7353211988d # v2.227
80+
uses: github/codeql-action/init@f779452ac5af1c261dce0346a8f964149f49322b # v2.227
8181
with:
8282
languages: ${{ matrix.language }}
8383
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -91,7 +91,7 @@ jobs:
9191
# Automates dependency installation for Python, Ruby, and JavaScript, optimizing the CodeQL analysis setup.
9292
# If this step fails, then you should remove it and run the build manually (see below)
9393
- name: Autobuild
94-
uses: github/codeql-action/autobuild@8214744c546c1e5c8f03dde8fab3a7353211988d # v2.227
94+
uses: github/codeql-action/autobuild@f779452ac5af1c261dce0346a8f964149f49322b # v2.227
9595

9696
# ℹ️ Command-line programs to run using the OS shell.
9797
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -104,6 +104,6 @@ jobs:
104104
# ./location_of_script_within_repo/buildscript.sh
105105

106106
- name: Perform CodeQL Analysis
107-
uses: github/codeql-action/analyze@8214744c546c1e5c8f03dde8fab3a7353211988d # v2.227
107+
uses: github/codeql-action/analyze@f779452ac5af1c261dce0346a8f964149f49322b # v2.227
108108
with:
109109
category: '/language:${{matrix.language}}'

.github/workflows/dependencies.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
steps:
3434
- name: Set up JDK 17
35-
uses: actions/setup-java@2dfa2011c5b2a0f1489bf9e433881c92c1631f88 # v4.3.0
35+
uses: actions/setup-java@b36c23c0d998641eff861008f374ee103c25ac73 # v4.4.0
3636
with:
3737
distribution: 'temurin'
3838
java-version: '17'
@@ -68,7 +68,7 @@ jobs:
6868
if: steps.dependencies-changed.outputs.changed == 'true'
6969

7070
- name: Upload DEPENDENCIES file
71-
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
71+
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
7272
with:
7373
path: DEPENDENCIES
7474
if: steps.dependencies-changed.outputs.changed == 'true'

.github/workflows/kics.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
4242

4343
- name: KICS scan
44-
uses: checkmarx/kics-github-action@530ac1f8efe6202b0f12c9a6e952597ae707b755 # v2.1.2
44+
uses: checkmarx/kics-github-action@94469746ec2c43de89a42fb9d2a80070f5d25b16 # v2.1.3
4545
with:
4646
# Scanning directory .
4747
path: '.'
@@ -63,6 +63,6 @@ jobs:
6363
# Upload findings to GitHub Advanced Security Dashboard
6464
- name: Upload SARIF file for GitHub Advanced Security Dashboard
6565
if: always()
66-
uses: github/codeql-action/upload-sarif@8214744c546c1e5c8f03dde8fab3a7353211988d # v3.26.7
66+
uses: github/codeql-action/upload-sarif@f779452ac5af1c261dce0346a8f964149f49322b # v3.26.13
6767
with:
6868
sarif_file: kicsResults/results.sarif

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
9494

9595
- name: Setup Node
96-
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
96+
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
9797
with:
9898
node-version: 20
9999
registry-url: https://registry.npmjs.org/

.github/workflows/trivy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
4242

4343
- name: Run Trivy vulnerability scanner in repo mode
44-
uses: aquasecurity/trivy-action@6e7b7d1fd3e4fef0c5fa8cce1229c54b2c9bd0d8 # v0.24.0
44+
uses: aquasecurity/trivy-action@915b19bbe73b92a6cf82a1bc12b087c9a19a5fe2 # v0.28.0
4545
with:
4646
scan-type: 'config'
4747
hide-progress: false
@@ -50,7 +50,7 @@ jobs:
5050
vuln-type: 'os,library'
5151

5252
- name: Upload Trivy scan results to GitHub Security tab
53-
uses: github/codeql-action/upload-sarif@8214744c546c1e5c8f03dde8fab3a7353211988d # v3.26.7
53+
uses: github/codeql-action/upload-sarif@f779452ac5af1c261dce0346a8f964149f49322b # v3.26.13
5454
if: always()
5555
with:
5656
sarif_file: 'trivy-results1.sarif'

.github/workflows/trufflehog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848

4949
- name: TruffleHog OSS
5050
id: trufflehog
51-
uses: trufflesecurity/trufflehog@7e78ca385fb82c19568c7a4b341c97d57d9aa5e1 #v3.82.2
51+
uses: trufflesecurity/trufflehog@b66c1670749c06f8d18f96bcbc5a6b80f7a7108e #v3.82.11
5252
continue-on-error: true
5353
with:
5454
path: ./ # Scan the entire repository

.prettierignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ node_modules
22
storybook
33
build
44
dist
5-
public
5+
public
6+
CHANGELOG.md

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Changelog
22

3+
## [3.6.3](https://github.com/eclipse-tractusx/portal-shared-components/compare/v3.6.2...v3.6.3) (2024-10-11)
4+
5+
6+
### Bug Fixes
7+
8+
* **cards:** add clicked state on favorite icons ([d06b463](https://github.com/eclipse-tractusx/portal-shared-components/commit/d06b463d015732cc125930aba348416a7db859c1))
9+
* **prettier-check:** ignore changelog ([#344](https://github.com/eclipse-tractusx/portal-shared-components/issues/344)) ([16e9b48](https://github.com/eclipse-tractusx/portal-shared-components/commit/16e9b48fd077271e4f506fb62abe1498a2d230c5))
10+
11+
## [3.6.2](https://github.com/eclipse-tractusx/portal-shared-components/compare/v3.6.1...v3.6.2) (2024-10-07)
12+
13+
14+
### Bug Fixes
15+
16+
* **new toggle switch:** remove the on off text ([cb31a62](https://github.com/eclipse-tractusx/portal-shared-components/commit/cb31a626dc7e63c29d6578919f88aded76883437))
17+
* **new toggle switch:** removed the on off text from toggle switch ([c161639](https://github.com/eclipse-tractusx/portal-shared-components/commit/c16163903efc9cd12b96b9d93548b4c179c86e44))
18+
319
## [3.6.1](https://github.com/eclipse-tractusx/portal-shared-components/compare/v3.6.0...v3.6.1) (2024-09-17)
420

521
### Bug Fixes
@@ -97,6 +113,7 @@
97113

98114
- simplify and automate release versioning ([3824c8c](https://github.com/eclipse-tractusx/portal-shared-components/commit/3824c8ccec94cbc5856c7094d92d7db21058f304))
99115
- **table:** support pagination in table component ([fc362a0](https://github.com/eclipse-tractusx/portal-shared-components/commit/fc362a08d2c881273f1cc3f9dd07cf26ad099547))
116+
- Horizontalcard component support image object(https://github.com/eclipse-tractusx/portal-shared-components/pull/355)
100117

101118
## 3.1.2
102119

0 commit comments

Comments
 (0)