Skip to content

Commit

Permalink
chore: upgrade minor dependencies (#2724)
Browse files Browse the repository at this point in the history
## Proposed change

Skipped `monaco-editor` and `typedoc`

## Related issues

<!--
Please make sure to follow the [contribution
guidelines](https://github.com/amadeus-digital/Otter/blob/main/CONTRIBUTING.md)
-->

*- No issue associated -*

<!-- * 🐛 Fix #issue -->
<!-- * 🐛 Fix resolves #issue -->
<!-- * 🚀 Feature #issue -->
<!-- * 🚀 Feature resolves #issue -->
<!-- * :octocat: Pull Request #issue -->
  • Loading branch information
fpaul-1A authored Jan 23, 2025
2 parents e1bbd12 + fad5964 commit a35c774
Show file tree
Hide file tree
Showing 36 changed files with 1,645 additions and 1,628 deletions.
2 changes: 1 addition & 1 deletion .github/actions/setup-java/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ runs:
with:
maven-version: ${{ inputs.mvn-version }}
- name: Set up JDK 17
uses: actions/setup-java@8df1039502a15bceb9433410b1a100fbe190c53b # v4.5.0
uses: actions/setup-java@7a6d8a8234af8eb26422e24e3006232cccaa061b # v4.6.0
if: inputs.install-jdk == 'true'
with:
java-version: '17'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/code-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
with:
install-jdk: 'true'
- name: Cache Jest
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
env:
hash: ${{ hashFiles('package.json', 'tsconfig.base.json', 'tsconfig.build.json', 'nx.json') }}
with:
Expand All @@ -83,12 +83,12 @@ jobs:
flags: unittests
token: ${{ secrets.CODECOV_TOKEN }}
- name: Upload test results to Codecov
uses: codecov/test-results-action@9739113ad922ea0a9abb4b2c0f8bf6a4aa8ef820 # 1.0.1
uses: codecov/test-results-action@4e79e65778be1cecd5df25e14af1eafb6df80ea9 # 1.0.2
with:
token: ${{ secrets.CODECOV_TOKEN }}
- name: Publish tests reports
if: always()
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
with:
name: ut-reports-${{ matrix.os }}
path: |
Expand All @@ -104,7 +104,7 @@ jobs:
- name: Setup
uses: ./tools/github-actions/setup
- name: Cache Eslint
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
env:
hash: ${{ hashFiles('yarn.lock') }}
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,15 @@ jobs:

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@f09c1c0a94de965c15400f5634aa42fac8fb8f88 # v3.27.5
uses: github/codeql-action/init@b6a472f63d85b9c78a3ac5e89422239fc15e9b3c # v3.28.1
with:
languages: ${{ matrix.language }}
config-file: ./.github/codeql/codeql-config.yml

- name: Autobuild
uses: github/codeql-action/autobuild@f09c1c0a94de965c15400f5634aa42fac8fb8f88 # v3.27.5
uses: github/codeql-action/autobuild@b6a472f63d85b9c78a3ac5e89422239fc15e9b3c # v3.28.1

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@f09c1c0a94de965c15400f5634aa42fac8fb8f88 # v3.27.5
uses: github/codeql-action/analyze@b6a472f63d85b9c78a3ac5e89422239fc15e9b3c # v3.28.1
with:
category: "/language:${{matrix.language}}"
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
run: yarn update-package ${{ inputs.docFolder }}/package.json --name ${{ inputs.packageName }} --version ${{ inputs.version }}
- run: zip -q -r ${{ inputs.artifactName }}.zip "${{ inputs.docFolder }}" -x "*/node_modules/*" ".cache/*"
shell: bash
- uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
- uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
with:
name: ${{ inputs.artifactName }}
path: ${{ inputs.artifactName }}.zip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:

- name: Publish tests reports
if: failure()
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
with:
name: e2e-report
path: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/it-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
run: zip -r verdaccio.zip ./.verdaccio
shell: bash
- name: Publish verdaccio storage
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
with:
name: ${{ inputs.ref && format('verdaccio-{0}', inputs.ref) || 'verdaccio' }}
path: verdaccio.zip
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
shell: bash
- name: Cache test-app yarn
if: inputs.ref == ''
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
with:
path: |
.cache/test-app
Expand Down Expand Up @@ -138,13 +138,13 @@ jobs:
shell: bash
- name: Publish generated tests environment on failure
if: failure() && steps.it-tests.conclusion == 'failure'
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
with:
name: it-tests-${{ matrix.os }}-${{ matrix.packageManager }}-${{ inputs.ref }}
path: it-tests.zip
- name: Publish tests reports
if: always()
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
with:
name: it-reports-${{ matrix.os }}-${{ matrix.packageManager }}-${{ inputs.ref }}
path: 'packages/**/dist-test/it-report.xml'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ jobs:
CHROME_REFRESH_TOKEN: ${{ secrets.CHROME_REFRESH_TOKEN }}
- name: Expose Chrome extension artifact
if: (success() || failure()) && !inputs.prerelease
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
with:
name: chrome-extension
path: apps/chrome-devtools/chrome-extension.zip
4 changes: 2 additions & 2 deletions .github/workflows/scorecards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,14 +58,14 @@ jobs:
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
# format to the repository Actions tab.
- name: "Upload artifact"
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
with:
name: SARIF file
path: results.sarif
retention-days: 5

# Upload the results to GitHub's code scanning dashboard.
- name: "Upload to code-scanning"
uses: github/codeql-action/upload-sarif@f09c1c0a94de965c15400f5634aa42fac8fb8f88 # v3.27.5
uses: github/codeql-action/upload-sarif@b6a472f63d85b9c78a3ac5e89422239fc15e9b3c # v3.28.1
with:
sarif_file: results.sarif
4 changes: 2 additions & 2 deletions apps/chrome-devtools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"@playwright/test": "~1.49.0",
"@schematics/angular": "~18.2.0",
"@stylistic/eslint-plugin": "~2.7.0",
"@types/chrome": "^0.0.283",
"@types/chrome": "^0.0.297",
"@types/jest": "~29.5.2",
"@types/tinycolor2": "^1.4.6",
"@typescript-eslint/parser": "~8.20.0",
Expand All @@ -75,7 +75,7 @@
"jest-junit": "~16.0.0",
"jest-preset-angular": "~14.2.0",
"jsonc-eslint-parser": "~2.4.0",
"lighthouse": "~12.2.0",
"lighthouse": "~12.3.0",
"minimist": "^1.2.6",
"nx": "~19.8.0",
"playwright-lighthouse": "~4.0.0",
Expand Down
4 changes: 2 additions & 2 deletions apps/showcase/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -136,13 +136,13 @@
"jest-junit": "~16.0.0",
"jest-preset-angular": "~14.2.0",
"jsonc-eslint-parser": "~2.4.0",
"lighthouse": "~12.2.0",
"lighthouse": "~12.3.0",
"minimist": "^1.2.6",
"playwright-lighthouse": "~4.0.0",
"rimraf": "^5.0.1",
"ts-jest": "~29.2.0",
"typescript": "~5.5.4",
"typescript-eslint": "~8.20.0",
"webpack": "~5.96.0"
"webpack": "~5.97.0"
}
}
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@
"js-yaml": "^4.1.0",
"jsonc-eslint-parser": "~2.4.0",
"jsonpath-plus": "~10.2.0",
"lighthouse": "~12.2.0",
"lighthouse": "~12.3.0",
"lint-staged": "^15.0.0",
"marked": "^12.0.0",
"minimist": "^1.2.6",
Expand All @@ -261,7 +261,7 @@
"react-dom": "^18.0.0",
"replace-in-files-cli": "^2.2.0",
"rimraf": "^5.0.1",
"sass": "~1.81.0",
"sass": "~1.83.0",
"sass-loader": "^14.0.0",
"semver": "^7.5.2",
"stylelint": "^16.0.2",
Expand All @@ -272,7 +272,7 @@
"typescript": "~5.5.4",
"typescript-eslint": "~8.20.0",
"uuid": "^10.0.0",
"webpack": "~5.96.0",
"webpack": "~5.97.0",
"winston": "^3.8.2",
"yaml-eslint-parser": "^1.2.2"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/@ama-sdk/swagger-builder/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"commander": "^12.0.0",
"globby": "^11.1.0",
"js-yaml": "^4.1.0",
"jsonschema": "~1.4.1",
"jsonschema": "~1.5.0",
"openapi-types": "^12.0.0",
"semver": "^7.5.2",
"swagger-schema-official": "~2.0.0-bab6bed",
Expand Down
4 changes: 2 additions & 2 deletions packages/@ama-terasu/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"jest": "~29.7.0",
"jest-junit": "~16.0.0",
"jsonc-eslint-parser": "~2.4.0",
"jsonschema": "~1.4.1",
"jsonschema": "~1.5.0",
"loglevel": "^1.8.0",
"minimist": "^1.2.6",
"nx": "~19.8.0",
Expand All @@ -71,7 +71,7 @@
"type-fest": "^4.10.2",
"typescript": "~5.5.4",
"typescript-eslint": "~8.20.0",
"webpack": "~5.96.0",
"webpack": "~5.97.0",
"webpack-cli": "~5.1.0"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/@o3r-training/training-tools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@
"jest": "~29.7.0",
"jest-junit": "~16.0.0",
"jsonc-eslint-parser": "~2.4.0",
"jsonschema": "~1.4.1",
"jsonschema": "~1.5.0",
"nx": "~19.8.0",
"rxjs": "^7.8.1",
"ts-jest": "~29.2.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/@o3r/analytics/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
"type-fest": "^4.10.2",
"typescript": "~5.5.4",
"typescript-eslint": "~8.20.0",
"webpack": "~5.96.0",
"webpack": "~5.97.0",
"zone.js": "~0.14.2"
},
"exports": {
Expand Down
2 changes: 1 addition & 1 deletion packages/@o3r/components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@
"jest-preset-angular": "~14.2.0",
"jsonc-eslint-parser": "~2.4.0",
"jsonpath-plus": "~10.2.0",
"memfs": "~4.14.0",
"memfs": "~4.17.0",
"nx": "~19.8.0",
"pid-from-port": "^1.1.3",
"rxjs": "^7.8.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/@o3r/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@
"jest-junit": "~16.0.0",
"jest-preset-angular": "~14.2.0",
"jsonc-eslint-parser": "~2.4.0",
"memfs": "~4.14.0",
"memfs": "~4.17.0",
"nx": "~19.8.0",
"pid-from-port": "^1.1.3",
"rxjs": "^7.8.1",
Expand Down
5 changes: 2 additions & 3 deletions packages/@o3r/design/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"o3r-css-from-design-token": "./dist/cli/generate-css-from-design-token.cli.cjs"
},
"dependencies": {
"jsonschema": "~1.4.1",
"jsonschema": "~1.5.0",
"minimatch": "~9.0.3",
"minimist": "^1.2.6",
"tslib": "^2.6.2"
Expand Down Expand Up @@ -145,11 +145,10 @@
"jest": "~29.7.0",
"jest-junit": "~16.0.0",
"jsonc-eslint-parser": "~2.4.0",
"jsonschema": "~1.4.1",
"nx": "~19.8.0",
"pid-from-port": "^1.1.3",
"rxjs": "^7.8.1",
"sass": "~1.81.0",
"sass": "~1.83.0",
"semver": "^7.5.2",
"ts-jest": "~29.2.0",
"ts-node": "~10.9.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/@o3r/extractors/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
"dependencies": {
"@microsoft/tsdoc": "~0.15.0",
"inquirer": "~8.2.6",
"jsonschema": "~1.4.1",
"jsonschema": "~1.5.0",
"tslib": "^2.6.2",
"typedoc": "~0.26.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/@o3r/localization/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@
"jest-junit": "~16.0.0",
"jest-preset-angular": "~14.2.0",
"jsonc-eslint-parser": "~2.4.0",
"memfs": "~4.14.0",
"memfs": "~4.17.0",
"nx": "~19.8.0",
"pid-from-port": "^1.1.3",
"rxjs": "^7.8.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ runs:
id: yarn-cache-dir-path
run: echo "dir=$(<% if (yarn2) { %>yarn config get cacheFolder<% } else { %>yarn cache dir<% } %>)" >> $GITHUB_OUTPUT
- name: Cache dependencies
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
with:
path: |
${{ steps.yarn-cache-dir-path.outputs.dir }}
Expand Down
2 changes: 1 addition & 1 deletion packages/@o3r/rules-engine/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@
"jest-preset-angular": "~14.2.0",
"jsonc-eslint-parser": "~2.4.0",
"jsonpath-plus": "~10.2.0",
"memfs": "~4.14.0",
"memfs": "~4.17.0",
"nx": "~19.8.0",
"pid-from-port": "^1.1.3",
"rimraf": "^5.0.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/@o3r/schematics/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
"jest": "~29.7.0",
"jest-junit": "~16.0.0",
"jsonc-eslint-parser": "~2.4.0",
"jsonschema": "~1.4.1",
"jsonschema": "~1.5.0",
"nx": "~19.8.0",
"rxjs": "^7.8.1",
"ts-jest": "~29.2.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/@o3r/styling/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -190,11 +190,11 @@
"jest-junit": "~16.0.0",
"jest-preset-angular": "~14.2.0",
"jsonc-eslint-parser": "~2.4.0",
"memfs": "~4.14.0",
"memfs": "~4.17.0",
"nx": "~19.8.0",
"pid-from-port": "^1.1.3",
"rxjs": "^7.8.1",
"sass": "~1.81.0",
"sass": "~1.83.0",
"semver": "^7.5.2",
"stylelint": "^16.0.2",
"stylelint-scss": "^6.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/@o3r/test-helpers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
"jest-environment-node": "~29.7.0",
"jest-junit": "~16.0.0",
"jsonc-eslint-parser": "~2.4.0",
"memfs": "~4.14.0",
"memfs": "~4.17.0",
"pid-from-port": "^1.1.3",
"rxjs": "^7.8.1",
"semver": "^7.5.2",
Expand Down
Loading

0 comments on commit a35c774

Please sign in to comment.