Skip to content

Commit

Permalink
fix(deps): update all non-major dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Jan 8, 2025
1 parent e116ac5 commit 16ed3ac
Show file tree
Hide file tree
Showing 26 changed files with 101 additions and 509 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 @@ -58,7 +58,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 @@ -81,12 +81,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@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
with:
name: ut-reports-${{ matrix.os }}
path: |
Expand All @@ -102,7 +102,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@48ab28a6f5dbc2a99bf1e0131198dd8f1df78169 # v3.28.0
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@48ab28a6f5dbc2a99bf1e0131198dd8f1df78169 # v3.28.0

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@f09c1c0a94de965c15400f5634aa42fac8fb8f88 # v3.27.5
uses: github/codeql-action/analyze@48ab28a6f5dbc2a99bf1e0131198dd8f1df78169 # v3.28.0
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@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.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 @@ -42,7 +42,7 @@ jobs:

- name: Publish tests reports
if: failure()
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
with:
name: e2e-report
path: apps/showcase/playwright-reports
8 changes: 4 additions & 4 deletions .github/workflows/it-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,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@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
with:
name: ${{ inputs.ref && format('verdaccio-{0}', inputs.ref) || 'verdaccio' }}
path: verdaccio.zip
Expand Down Expand Up @@ -94,7 +94,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 @@ -137,13 +137,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@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.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@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.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 @@ -140,7 +140,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@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.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@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.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@48ab28a6f5dbc2a99bf1e0131198dd8f1df78169 # v3.28.0
with:
sarif_file: results.sarif
2 changes: 1 addition & 1 deletion apps/chrome-devtools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"@o3r/rules-engine": "workspace:^",
"@schematics/angular": "~18.2.0",
"@stylistic/eslint-plugin": "~2.7.0",
"@types/chrome": "^0.0.283",
"@types/chrome": "^0.0.289",
"@types/jest": "~29.5.2",
"@types/tinycolor2": "^1.4.6",
"@typescript-eslint/parser": "~8.19.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 @@ -131,13 +131,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.19.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 @@ -239,7 +239,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 @@ -257,7 +257,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 @@ -268,7 +268,7 @@
"typescript": "~5.5.4",
"typescript-eslint": "~8.19.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-terasu/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
"type-fest": "^4.10.2",
"typescript": "~5.5.4",
"typescript-eslint": "~8.19.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/showcase-sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
"rimraf": "^5.0.1",
"ts-jest": "~29.2.0",
"tsc-watch": "^6.0.4",
"typedoc": "~0.26.0",
"typedoc": "~0.27.0",
"typescript": "~5.5.4",
"typescript-eslint": "~8.19.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.19.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.15.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 @@ -134,7 +134,7 @@
"jest-junit": "~16.0.0",
"jest-preset-angular": "~14.2.0",
"jsonc-eslint-parser": "~2.4.0",
"memfs": "~4.14.0",
"memfs": "~4.15.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/design/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@
"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 @@ -79,7 +79,7 @@
"inquirer": "~8.2.6",
"jsonschema": "~1.4.1",
"tslib": "^2.6.2",
"typedoc": "~0.26.0"
"typedoc": "~0.27.0"
},
"devDependencies": {
"@angular-devkit/architect": "~0.1802.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.15.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.15.0",
"nx": "~19.8.0",
"pid-from-port": "^1.1.3",
"rimraf": "^5.0.1",
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 @@ -191,11 +191,11 @@
"jest-junit": "~16.0.0",
"jest-preset-angular": "~14.2.0",
"jsonc-eslint-parser": "~2.4.0",
"memfs": "~4.14.0",
"memfs": "~4.15.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.15.0",
"pid-from-port": "^1.1.3",
"rxjs": "^7.8.1",
"semver": "^7.5.2",
Expand Down
2 changes: 1 addition & 1 deletion tools/github-actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ runs:
shell: bash
run: corepack enable
- name: Cache dependencies
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
with:
path: |
~/.cache/ms-playwright
Expand Down
2 changes: 1 addition & 1 deletion tools/github-actions/upload-build-output/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ runs:
steps:
- run: zip -q -r ${{ inputs.artifactName }}.zip . -i "apps/*/dist/*" "packages/*/dist/*" -x "*/node_modules/*" ".cache/*"
shell: bash
- uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
- uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
with:
name: ${{ inputs.artifactName }}
path: ${{ inputs.artifactName }}.zip
Expand Down
Loading

0 comments on commit 16ed3ac

Please sign in to comment.