diff --git a/.github/workflows/appsec.yml b/.github/workflows/appsec.yml index dbd2968e9d0..027352a7839 100644 --- a/.github/workflows/appsec.yml +++ b/.github/workflows/appsec.yml @@ -39,7 +39,9 @@ jobs: runs-on: windows-latest steps: - uses: actions/checkout@v4 - - uses: ./.github/actions/node/setup + - uses: actions/setup-node@v3 + with: + node-version: '18' - run: yarn install - run: yarn test:appsec:ci - uses: codecov/codecov-action@v3 diff --git a/.github/workflows/profiling.yml b/.github/workflows/profiling.yml index d09f20346d8..e41e188e54d 100644 --- a/.github/workflows/profiling.yml +++ b/.github/workflows/profiling.yml @@ -45,7 +45,9 @@ jobs: runs-on: windows-latest steps: - uses: actions/checkout@v4 - - uses: ./.github/actions/node/setup + - uses: actions/setup-node@v3 + with: + node-version: '18' - run: yarn install - run: yarn test:profiler:ci - run: yarn test:integration:profiler diff --git a/.github/workflows/tracing.yml b/.github/workflows/tracing.yml index 3062df0166a..4717d94f38b 100644 --- a/.github/workflows/tracing.yml +++ b/.github/workflows/tracing.yml @@ -41,7 +41,10 @@ jobs: runs-on: windows-latest steps: - uses: actions/checkout@v4 - - uses: ./.github/actions/node/setup + - uses: actions/setup-node@v3 + with: + cache: yarn + node-version: '18' - run: yarn install - run: yarn test:trace:core:ci - uses: codecov/codecov-action@v3