From 8718a91d261f989cbc4927f3666c0837d6c697cc Mon Sep 17 00:00:00 2001 From: Peter Johnson Date: Fri, 1 Dec 2023 18:57:56 +0100 Subject: [PATCH] feat(docker): trigger docker multiarch build --- .github/workflows/_test.yml | 5 +++-- .github/workflows/push.yml | 9 ++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/_test.yml b/.github/workflows/_test.yml index 1d647a2bc..76d64daf7 100644 --- a/.github/workflows/_test.yml +++ b/.github/workflows/_test.yml @@ -11,10 +11,11 @@ jobs: - 12.x - 14.x - 16.x + - 18.x steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: 'Install node.js ${{ matrix.node-version }}' - uses: actions/setup-node@v2-beta + uses: actions/setup-node@v4 with: node-version: '${{ matrix.node-version }}' - name: Run unit tests diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index a99f5c7a6..558d5df8f 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -8,11 +8,11 @@ jobs: if: github.ref == 'refs/heads/master' && needs.unit-tests.result == 'success' runs-on: ${{ vars.UBUNTU_VERSION }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Install Node.js - uses: actions/setup-node@v2-beta + uses: actions/setup-node@v4 with: - node-version: 16.x + node-version: 20.x - name: Run semantic-release env: GH_TOKEN: ${{ secrets.GH_SEMANTIC_RELEASE_TOKEN }} @@ -28,11 +28,10 @@ jobs: needs: [unit-tests, npm-publish] runs-on: ${{ vars.UBUNTU_VERSION }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Build Docker images env: DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} - DOCKER_BUILD_PLATFORMS: classic run: | curl "https://raw.githubusercontent.com/pelias/ci-tools/master/build-docker-images.sh" | bash -