Skip to content

Commit f32fb72

Browse files
committed
feat(docker): trigger docker multiarch build
1 parent a8655d7 commit f32fb72

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/_test.yml

+3-2
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

+4-4
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,7 +28,7 @@ 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 }}

0 commit comments

Comments
 (0)