From f502ca65043d434c85c8a9caf66bc710d6ff9b42 Mon Sep 17 00:00:00 2001 From: Peter Johnson Date: Fri, 1 Dec 2023 11:09:36 +0100 Subject: [PATCH] feat(docker): trigger docker multiarch build --- .github/workflows/_integration_tests.yml | 3 +-- .github/workflows/_unit_tests.yml | 3 +-- .github/workflows/push.yml | 2 +- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/_integration_tests.yml b/.github/workflows/_integration_tests.yml index 7a4bbc9a..dfcbf621 100644 --- a/.github/workflows/_integration_tests.yml +++ b/.github/workflows/_integration_tests.yml @@ -7,7 +7,7 @@ jobs: matrix: os: - ${{ vars.UBUNTU_VERSION }} - node-version: [14.x, 16.x] + node-version: [16.x, 18.x] es-version: [7.6.1] jdk-version: [oraclejdk11] steps: @@ -23,7 +23,6 @@ jobs: run: ./scripts/setup_ci.sh - name: Run integration tests run: | - npm install -g npm npm install curl http://127.0.0.1:9200/ ./bin/create_index diff --git a/.github/workflows/_unit_tests.yml b/.github/workflows/_unit_tests.yml index 53d6d0e3..aa68c1e2 100644 --- a/.github/workflows/_unit_tests.yml +++ b/.github/workflows/_unit_tests.yml @@ -7,7 +7,7 @@ jobs: matrix: os: - ${{ vars.UBUNTU_VERSION }} - node-version: [14.x, 16.x] + node-version: [16.x, 18.x] steps: - uses: actions/checkout@v2 - name: Install node.js ${{ matrix.node-version }} @@ -16,6 +16,5 @@ jobs: node-version: ${{ matrix.node-version }} - name: Run unit tests run: | - npm install -g npm npm install npm run test diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index cb27eaa5..f4defbbb 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -17,7 +17,7 @@ jobs: - name: Install Node.js uses: actions/setup-node@v2-beta with: - node-version: 16.x + node-version: 20.x - name: Run semantic-release env: GH_TOKEN: ${{ secrets.GH_SEMANTIC_RELEASE_TOKEN }}