Skip to content

Commit 8f6596d

Browse files
committed
feat(docker): trigger docker multiarch build
1 parent 5e4153f commit 8f6596d

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/_test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,11 @@ jobs:
1111
- 12.x
1212
- 14.x
1313
- 16.x
14+
- 18.x
1415
steps:
15-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v4
1617
- name: 'Install node.js ${{ matrix.node-version }}'
17-
uses: actions/setup-node@v2-beta
18+
uses: actions/setup-node@v4
1819
with:
1920
node-version: '${{ matrix.node-version }}'
2021
- name: Run unit tests

.github/workflows/push.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ jobs:
88
if: github.ref == 'refs/heads/master' && needs.unit-tests.result == 'success'
99
runs-on: ${{ vars.UBUNTU_VERSION }}
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v4
1212
- name: Install Node.js
13-
uses: actions/setup-node@v2-beta
13+
uses: actions/setup-node@v4
1414
with:
15-
node-version: 16.x
15+
node-version: 20.x
1616
- name: Run semantic-release
1717
env:
1818
GH_TOKEN: ${{ secrets.GH_SEMANTIC_RELEASE_TOKEN }}
@@ -28,11 +28,10 @@ jobs:
2828
needs: [unit-tests, npm-publish]
2929
runs-on: ${{ vars.UBUNTU_VERSION }}
3030
steps:
31-
- uses: actions/checkout@v2
31+
- uses: actions/checkout@v4
3232
- name: Build Docker images
3333
env:
3434
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
3535
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
36-
DOCKER_BUILD_PLATFORMS: classic
3736
run: |
3837
curl "https://raw.githubusercontent.com/pelias/ci-tools/master/build-docker-images.sh" | bash -

0 commit comments

Comments
 (0)