Skip to content

Commit

Permalink
chore(deps): update all non-major dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Oct 14, 2024
1 parent 4ac9971 commit 7a9b0e9
Show file tree
Hide file tree
Showing 15 changed files with 31 additions and 31 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/code-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
run: yarn ${{ env.testCmd }}
- name: Publish tests reports
if: always()
uses: actions/upload-artifact@84480863f228bb9747b473957fcc9e309aa96097 # v4.4.2
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
with:
name: ut-reports-${{ matrix.os }}
path: |
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@c36620d31ac7c881962c3d9dd939c40ec9434f2b # v3.26.12
uses: github/codeql-action/init@f779452ac5af1c261dce0346a8f964149f49322b # v3.26.13
with:
languages: ${{ matrix.language }}
config-file: ./.github/codeql/codeql-config.yml

- name: Autobuild
uses: github/codeql-action/autobuild@c36620d31ac7c881962c3d9dd939c40ec9434f2b # v3.26.12
uses: github/codeql-action/autobuild@f779452ac5af1c261dce0346a8f964149f49322b # v3.26.13

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@c36620d31ac7c881962c3d9dd939c40ec9434f2b # v3.26.12
uses: github/codeql-action/analyze@f779452ac5af1c261dce0346a8f964149f49322b # v3.26.13
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@84480863f228bb9747b473957fcc9e309aa96097 # v4.4.2
- uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
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 @@ -41,7 +41,7 @@ jobs:

- name: Publish tests reports
if: failure()
uses: actions/upload-artifact@84480863f228bb9747b473957fcc9e309aa96097 # v4.4.2
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
with:
name: e2e-report
path: apps/showcase/playwright-reports
6 changes: 3 additions & 3 deletions .github/workflows/it-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
run: zip -r verdaccio.zip ./.verdaccio
shell: bash
- name: Publish verdaccio storage
uses: actions/upload-artifact@84480863f228bb9747b473957fcc9e309aa96097 # v4.4.2
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
with:
name: verdaccio
path: verdaccio.zip
Expand Down Expand Up @@ -120,13 +120,13 @@ jobs:
shell: bash
- name: Publish generated tests environment on failure
if: failure() && steps.it-tests.conclusion == 'failure'
uses: actions/upload-artifact@84480863f228bb9747b473957fcc9e309aa96097 # v4.4.2
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
with:
name: it-tests-${{ matrix.os }}-${{ matrix.packageManager }}
path: it-tests.zip
- name: Publish tests reports
if: always()
uses: actions/upload-artifact@84480863f228bb9747b473957fcc9e309aa96097 # v4.4.2
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
with:
name: it-reports-${{ matrix.os }}-${{ matrix.packageManager }}
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@84480863f228bb9747b473957fcc9e309aa96097 # v4.4.2
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
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@84480863f228bb9747b473957fcc9e309aa96097 # v4.4.2
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
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@c36620d31ac7c881962c3d9dd939c40ec9434f2b # v3.26.12
uses: github/codeql-action/upload-sarif@f779452ac5af1c261dce0346a8f964149f49322b # v3.26.13
with:
sarif_file: results.sarif
2 changes: 1 addition & 1 deletion packages/@o3r/components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@
"jest-preset-angular": "~14.2.0",
"jsonc-eslint-parser": "~2.4.0",
"jsonpath-plus": "^9.0.0",
"memfs": "~4.13.0",
"memfs": "~4.14.0",
"nx": "~19.5.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 @@ -126,7 +126,7 @@
"jest-junit": "~16.0.0",
"jest-preset-angular": "~14.2.0",
"jsonc-eslint-parser": "~2.4.0",
"memfs": "~4.13.0",
"memfs": "~4.14.0",
"minimist": "^1.2.6",
"nx": "~19.5.0",
"pid-from-port": "^1.1.3",
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 @@ -172,7 +172,7 @@
"jest-junit": "~16.0.0",
"jest-preset-angular": "~14.2.0",
"jsonc-eslint-parser": "~2.4.0",
"memfs": "~4.13.0",
"memfs": "~4.14.0",
"nx": "~19.5.0",
"pid-from-port": "^1.1.3",
"rxjs": "^7.8.1",
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 @@ -144,7 +144,7 @@
"jest-preset-angular": "~14.2.0",
"jsonc-eslint-parser": "~2.4.0",
"jsonpath-plus": "^9.0.0",
"memfs": "~4.13.0",
"memfs": "~4.14.0",
"nx": "~19.5.0",
"pid-from-port": "^1.1.3",
"rimraf": "^5.0.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/@o3r/styling/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@
"jest-junit": "~16.0.0",
"jest-preset-angular": "~14.2.0",
"jsonc-eslint-parser": "~2.4.0",
"memfs": "~4.13.0",
"memfs": "~4.14.0",
"nx": "~19.5.0",
"pid-from-port": "^1.1.3",
"rxjs": "^7.8.1",
Expand Down
4 changes: 2 additions & 2 deletions packages/@o3r/test-helpers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"@angular-devkit/schematics": "~18.2.0",
"@o3r/schematics": "workspace:^",
"jest-environment-node": "~29.7.0",
"memfs": "~4.13.0",
"memfs": "~4.14.0",
"pid-from-port": "^1.1.3",
"unionfs": "~4.5.1"
},
Expand Down Expand Up @@ -68,7 +68,7 @@
"jest-environment-node": "~29.7.0",
"jest-junit": "~16.0.0",
"jsonc-eslint-parser": "~2.4.0",
"memfs": "~4.13.0",
"memfs": "~4.14.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/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@84480863f228bb9747b473957fcc9e309aa96097 # v4.4.2
- uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
with:
name: ${{ inputs.artifactName }}
path: ${{ inputs.artifactName }}.zip
Expand Down
22 changes: 11 additions & 11 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7610,7 +7610,7 @@ __metadata:
jest-preset-angular: "npm:~14.2.0"
jsonc-eslint-parser: "npm:~2.4.0"
jsonpath-plus: "npm:^9.0.0"
memfs: "npm:~4.13.0"
memfs: "npm:~4.14.0"
nx: "npm:~19.5.0"
pid-from-port: "npm:^1.1.3"
rxjs: "npm:^7.8.1"
Expand Down Expand Up @@ -7850,7 +7850,7 @@ __metadata:
jest-junit: "npm:~16.0.0"
jest-preset-angular: "npm:~14.2.0"
jsonc-eslint-parser: "npm:~2.4.0"
memfs: "npm:~4.13.0"
memfs: "npm:~4.14.0"
minimist: "npm:^1.2.6"
nx: "npm:~19.5.0"
pid-from-port: "npm:^1.1.3"
Expand Down Expand Up @@ -8822,7 +8822,7 @@ __metadata:
jest-junit: "npm:~16.0.0"
jest-preset-angular: "npm:~14.2.0"
jsonc-eslint-parser: "npm:~2.4.0"
memfs: "npm:~4.13.0"
memfs: "npm:~4.14.0"
nx: "npm:~19.5.0"
pid-from-port: "npm:^1.1.3"
rxjs: "npm:^7.8.1"
Expand Down Expand Up @@ -9321,7 +9321,7 @@ __metadata:
jest-preset-angular: "npm:~14.2.0"
jsonc-eslint-parser: "npm:~2.4.0"
jsonpath-plus: "npm:^9.0.0"
memfs: "npm:~4.13.0"
memfs: "npm:~4.14.0"
nx: "npm:~19.5.0"
pid-from-port: "npm:^1.1.3"
rimraf: "npm:^5.0.1"
Expand Down Expand Up @@ -9868,7 +9868,7 @@ __metadata:
jest-junit: "npm:~16.0.0"
jest-preset-angular: "npm:~14.2.0"
jsonc-eslint-parser: "npm:~2.4.0"
memfs: "npm:~4.13.0"
memfs: "npm:~4.14.0"
nx: "npm:~19.5.0"
pid-from-port: "npm:^1.1.3"
rxjs: "npm:^7.8.1"
Expand Down Expand Up @@ -10028,7 +10028,7 @@ __metadata:
jest-environment-node: "npm:~29.7.0"
jest-junit: "npm:~16.0.0"
jsonc-eslint-parser: "npm:~2.4.0"
memfs: "npm:~4.13.0"
memfs: "npm:~4.14.0"
pid-from-port: "npm:^1.1.3"
rxjs: "npm:^7.8.1"
semver: "npm:^7.5.2"
Expand All @@ -10042,7 +10042,7 @@ __metadata:
"@angular-devkit/schematics": ~18.2.0
"@o3r/schematics": "workspace:^"
jest-environment-node: ~29.7.0
memfs: ~4.13.0
memfs: ~4.14.0
pid-from-port: ^1.1.3
unionfs: ~4.5.1
peerDependenciesMeta:
Expand Down Expand Up @@ -25616,15 +25616,15 @@ __metadata:
languageName: node
linkType: hard

"memfs@npm:^4.6.0, memfs@npm:~4.13.0":
version: 4.13.0
resolution: "memfs@npm:4.13.0"
"memfs@npm:^4.6.0, memfs@npm:~4.14.0":
version: 4.14.0
resolution: "memfs@npm:4.14.0"
dependencies:
"@jsonjoy.com/json-pack": "npm:^1.0.3"
"@jsonjoy.com/util": "npm:^1.3.0"
tree-dump: "npm:^1.0.1"
tslib: "npm:^2.0.0"
checksum: 10/0278e6993e89909e896a481c85eb92fe647585bbb8cdc12d9cfab118e0936dee1556f87002611f2bcaabc9ba1808526546a52809788fde4ee359b54bed662e58
checksum: 10/d1a5a38fb8e97cbdff012e47d05c92852484f37a03e9c57b252fdc180c4ffe35ee7ec83acea3be8950e1f13f9152db4d5478124b43f9673f4653e741ba26d584
languageName: node
linkType: hard

Expand Down

0 comments on commit 7a9b0e9

Please sign in to comment.