Skip to content

Commit

Permalink
chore(deps): update all dependencies j:cdx-227
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Sep 12, 2024
1 parent d3ef51b commit b28bac4
Show file tree
Hide file tree
Showing 45 changed files with 1,127 additions and 1,422 deletions.
2 changes: 1 addition & 1 deletion .github/actions/e2e-clean/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ inputs:
runs:
using: composite
steps:
- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3
- uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4
with:
cache: 'npm'
node-version-file: '.nvmrc'
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/e2e-login/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ runs:
run: |
echo "${{ env.E2E_TOKEN_PASSPHRASE }}" | gpg -a --batch --passphrase-fd 0 --symmetric --cipher-algo AES256 --output encodedConfig $CLI_CONFIG_PATH
echo "cliConfigJson=$(base64 -w 0 encodedConfig)" >> $GITHUB_OUTPUT
- uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3
- uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4
if: cancelled() || failure() || success()
with:
name: login-test-artifacts
Expand Down
6 changes: 3 additions & 3 deletions .github/actions/e2e-run/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ runs:
git config --global core.autocrlf false
git config --global core.eol lf
npm i -g npm@latest
- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3
- uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4
with:
cache: 'npm'
node-version-file: '.nvmrc'
- uses: actions/setup-python@57ded4d7d5e986d7296eab16560982c6dd7c923b # v4
- uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5
with:
cache: 'pip'
python-version: '3.10'
Expand Down Expand Up @@ -77,7 +77,7 @@ runs:
npm_config_registry: ${{inputs.npmRegistry}}
working-directory: packages/cli-e2e
run: npm run jest:ci -- ${{inputs.spec}} ${{inputs.flag}}
- uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3
- uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4
if: cancelled() || failure() || success()
with:
name: ${{inputs.os}}-${{inputs.node}}-${{inputs.spec}}-test-artifacts
Expand Down
44 changes: 22 additions & 22 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ env:
jobs:
lint:
name: Lint
runs-on: 'ubuntu-20.04'
runs-on: 'ubuntu-22.04'
steps:
- name: Setup runner
if: ${{matrix.os == 'ubuntu-20.04'}}
Expand All @@ -33,8 +33,8 @@ jobs:
git config --global core.autocrlf false
git config --global core.eol lf
npm i -g npm@latest
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3
- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4
with:
cache: 'npm'
node-version-file: '.nvmrc'
Expand All @@ -60,8 +60,8 @@ jobs:
git config --global core.autocrlf false
git config --global core.eol lf
npm i -g npm@latest
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3
- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4
with:
cache: 'npm'
node-version-file: '.nvmrc'
Expand All @@ -74,15 +74,15 @@ jobs:
e2e-setup-login:
timeout-minutes: 15
name: End-to-end login
runs-on: 'ubuntu-20.04'
runs-on: 'ubuntu-22.04'
outputs:
cliConfigJson: ${{ steps.setup.outputs.cliConfigJson}}
env:
# ID of the test run to identify resources to teardown.
TEST_RUN_ID: 'id${{ matrix.os }}-${{ github.sha }}-${{ github.run_attempt }}g'
steps:
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3
- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4
with:
cache: 'npm'
node-version-file: '.nvmrc'
Expand All @@ -101,20 +101,20 @@ jobs:
git config --global core.autocrlf false
git config --global core.eol lf
npm i -g npm@latest
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
with:
# pulls all commits (needed for computing the next version)
fetch-depth: 0
- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3
- uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4
with:
cache: 'npm'
node-version-file: '.nvmrc'
- uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4
if: ${{matrix.os == 'ubuntu-20.04'}}
with:
path: packages/cli-e2e/verdaccio
key: verdaccio-${{matrix.os}}-${{ github.sha }}-${{ github.run_attempt }}
- uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4
if: ${{matrix.os == 'windows-latest'}}
with:
path: packages\cli-e2e\verdaccio
Expand All @@ -124,7 +124,7 @@ jobs:
run: npm run build
- name: Setup E2E tests
run: node -r ts-node/register/transpile-only packages/cli-e2e/setup/ci-verdaccio.ts
- uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3
- uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4
if: cancelled() || failure() || success()
with:
name: ${{matrix.os}}-verdaccio-publish-artifacts
Expand Down Expand Up @@ -159,14 +159,14 @@ jobs:
COVEO_DISABLE_AUTOUPDATE: true
CLI_CONFIG_JSON: ${{needs.e2e-setup-login.outputs.cliConfigJson}}
steps:
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3
- uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4
if: ${{matrix.os == 'ubuntu-20.04'}}
with:
path: packages/cli-e2e/verdaccio
key: verdaccio-${{matrix.os}}-${{ github.sha }}-${{ github.run_attempt }}
restore-keys: verdaccio-${{matrix.os}}-${{ github.sha }}
- uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4
if: ${{matrix.os == 'windows-latest'}}
with:
path: packages\cli-e2e\verdaccio
Expand All @@ -184,21 +184,21 @@ jobs:
name: End-to-end teardown
if: ${{ always() }}
needs: [e2e, e2e-setup-login]
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
env:
# ID of the test run to identify resources to teardown.
TEST_RUN_ID: '${{ github.sha }}-${{ github.run_attempt }}g'
CLI_CONFIG_JSON: ${{needs.e2e-setup-login.outputs.cliConfigJson}}
steps:
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: ./.github/actions/e2e-clean
with:
cliConfigJson: ${{ env.CLI_CONFIG_JSON }}
e2e-report:
name: End-to-end status reporter
if: ${{ always() }}
needs: e2e
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Check e2e matrix status
if: ${{ needs.e2e.result != 'success' }}
Expand All @@ -208,14 +208,14 @@ jobs:
name: Pre-release
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
needs: [e2e-report, lint, unit-tests]
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
environment: prerelease
steps:
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
with:
# pulls all commits (needed for computing the next version)
fetch-depth: 0
- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3
- uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4
with:
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:
jobs:
codeql:
name: CodeQL
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
permissions:
actions: read
contents: read
Expand All @@ -29,12 +29,12 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Initialize CodeQL
uses: github/codeql-action/init@f3feb00acb00f31a6f60280e6ace9ca31d91c76a # v2
uses: github/codeql-action/init@4dd16135b69a43b6c8efb853346f8437d92d3c93 # v3
with:
languages: ${{ matrix.language }}
config-file: .github/codeql/config.yml

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@f3feb00acb00f31a6f60280e6ace9ca31d91c76a # v2
uses: github/codeql-action/analyze@4dd16135b69a43b6c8efb853346f8437d92d3c93 # v3
14 changes: 7 additions & 7 deletions .github/workflows/daily-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,21 +24,21 @@ env:
jobs:
e2e-setup-login:
name: End-to-end login
runs-on: 'ubuntu-20.04'
runs-on: 'ubuntu-22.04'
timeout-minutes: 30
outputs:
cliConfigJson: ${{ steps.setup.outputs.cliConfigJson}}
env:
# ID of the test run to identify resources to teardown.
TEST_RUN_ID: 'id${{ matrix.os }}-${{ github.sha }}-${{ github.run_attempt }}-dailyg'
steps:
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
with:
# pulls all commits (needed for computing the next version)
fetch-depth: 0
- name: Checkout last tag
run: git checkout $(git describe --abbrev=0 --tags)
- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3
- uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4
with:
cache: 'npm'
node-version-file: '.nvmrc'
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
COVEO_DISABLE_AUTOUPDATE: true
CLI_CONFIG_JSON: ${{needs.e2e-setup-login.outputs.cliConfigJson}}
steps:
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
with:
# pulls all commits (needed for computing the next version)
fetch-depth: 0
Expand All @@ -93,13 +93,13 @@ jobs:
name: End-to-end teardown
if: ${{ always() }}
needs: [e2e, e2e-setup-login]
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
env:
# ID of the test run to identify resources to teardown.
TEST_RUN_ID: '${{ github.sha }}-${{ github.run_attempt }}-dailyg'
CLI_CONFIG_JSON: ${{needs.e2e-setup-login.outputs.cliConfigJson}}
steps:
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
with:
# pulls all commits (needed for computing the next version)
fetch-depth: 0
Expand All @@ -115,7 +115,7 @@ jobs:
timeout-minutes: 30
if: ${{ always() }}
needs: e2e
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
environment: Daily Tests
steps:
- name: Check e2e matrix status
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/delete-resources.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
delete-resources:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
environment: Cleaning
env:
ORG_ID: ${{ secrets.ORG_ID }}
Expand All @@ -17,8 +17,8 @@ jobs:
PLATFORM_USER_NAME: ${{ secrets.PLATFORM_USER_NAME }}
PLATFORM_USER_PASSWORD: ${{ secrets.PLATFORM_USER_PASSWORD }}
steps:
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3
- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4
with:
cache: 'npm'
node-version-file: '.nvmrc'
Expand All @@ -41,7 +41,7 @@ jobs:
node ./scripts/cleaning/delete-orgs.js --olderThan 1d
env:
DISPLAY: ':1'
- uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3
- uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4
if: cancelled() || failure() || success()
with:
name: cleaning-artifacts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/git-lock-fail.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ on:

jobs:
git-locked:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- run: exit 1
2 changes: 1 addition & 1 deletion .github/workflows/git-lock-success.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ on:

jobs:
git-locked:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- run: exit 0
4 changes: 2 additions & 2 deletions .github/workflows/merge-bot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ on:
jobs:
Merge:
if: ${{ github.event_name == 'pull_request' || github.event.issue.pull_request }}
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
steps:
- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3
- uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4
- name: Run the Bot
run: npx @coveo/merge-bot
2 changes: 1 addition & 1 deletion .github/workflows/package-lock-root-fail.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ on:

jobs:
lockfile-outside-of-root:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- run: exit 1
2 changes: 1 addition & 1 deletion .github/workflows/package-lock-root-success.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ on:

jobs:
lockfile-outside-of-root:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- run: exit 0
4 changes: 2 additions & 2 deletions .github/workflows/package-lock-version-fail.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ on:

jobs:
lockfile-version:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Check lockfileVersion of all package-lock.json
run: node scripts/check-lockfile-versions.js $(find ./ -xdev -wholename '**/package-lock.json')
2 changes: 1 addition & 1 deletion .github/workflows/package-lock-version-succes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ on:

jobs:
lockfile-version:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- run: exit 0
4 changes: 2 additions & 2 deletions .github/workflows/pr-title-semantic-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ on:
types: [opened, edited, synchronize, reopened]
jobs:
Lint:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
steps:
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Ensure PR Title is Semantic
run: |
npm ci
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/prbot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ on:

jobs:
run-script:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
env:
GITHUB_CREDENTIALS: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
with:
fetch-depth: 0
- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3
- uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4
with:
cache: 'npm'
node-version-file: '.nvmrc'
Expand Down
Loading

0 comments on commit b28bac4

Please sign in to comment.