Skip to content

Commit fb0252d

Browse files
committed
Changed next job to use prebuilt action
1 parent 92b8c2e commit fb0252d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/apm-integrations.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -655,9 +655,7 @@ jobs:
655655
strategy:
656656
fail-fast: false
657657
matrix:
658-
version:
659-
- 18
660-
- latest
658+
node-version: [18, latest]
661659
range:
662660
- '>=10.2.0 <11'
663661
- '>=11.0.0 <13'
@@ -691,13 +689,15 @@ jobs:
691689
steps:
692690
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
693691
- uses: ./.github/actions/testagent/start
694-
- uses: ./.github/actions/node/latest
692+
- uses: ./.github/actions/node
693+
with:
694+
version: ${{ matrix.node-version }}
695695
- uses: ./.github/actions/install
696696
- run: yarn test:plugins:ci
697697
- if: always()
698698
uses: ./.github/actions/testagent/logs
699699
with:
700-
suffix: plugins-${{ github.job }}-${{ matrix.version }}-${{ matrix.range_clean }}
700+
suffix: plugins-${{ github.job }}-${{ matrix.node-version }}-${{ matrix.range_clean }}
701701
- uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1
702702

703703
opensearch:

0 commit comments

Comments
 (0)