Skip to content

Commit

Permalink
Merge upgrade to Node.js 21
Browse files Browse the repository at this point in the history
  • Loading branch information
tyranron committed Jan 5, 2024
2 parents 5052dd8 + bab77cc commit 7b2059d
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 8 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,9 @@ jobs:
- arm64v8
- ppc64le
- s390x
runs-on: ${{ (matrix.arch == 's390x' && 'macos')
|| 'ubuntu' }}-latest
runs-on: ${{ (contains('arm32v6 arm32v7 s390x', matrix.arch)
&& 'macos')
|| 'ubuntu' }}-latest
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -45,11 +46,11 @@ jobs:
ln -sfn /usr/local/opt/docker-buildx/bin/docker-buildx \
/Users/runner/.docker/cli-plugins/docker-buildx
colima start
if: ${{ matrix.arch == 's390x' }}
if: ${{ contains('arm32v6 arm32v7 s390x', matrix.arch) }}
- uses: docker/setup-qemu-action@v3
if: ${{ matrix.arch == 's390x' }}
if: ${{ contains('arm32v6 arm32v7 s390x', matrix.arch) }}
- uses: docker/setup-buildx-action@v3
if: ${{ matrix.arch != 's390x' }}
if: ${{ !contains('arm32v6 arm32v7 s390x', matrix.arch) }}

- run: make docker.image no-cache=yes
platform=${{ matrix.os }}/${{ matrix.arch }}
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ All user visible changes to this project will be documented in this file. This p



## [3.0.2-node21-r0] · 2024-01-05
[3.0.2-node21-r0]: /../../tree/v3.0.2-node21-r0

[Diff](/../../compare/v3.0.2-node18-r4...v3.0.2-node21-r0)

### Upgraded

- [Node.js] 21: <https://github.com/nodejs/node/blob/v21.0.0/doc/changelogs/CHANGELOG_V21.md#2023-10-17-version-2100-current-rafaelgss-and-targos>




## [3.0.2-node18-r4] · 2023-12-12
[3.0.2-node18-r4]: /../../tree/v3.0.2-node18-r4

Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# https://hub.docker.com/_/node
ARG node_ver=18
ARG node_ver=21
FROM node:${node_ver}-alpine3.19

ARG haraka_ver=3.0.2
ARG build_rev=4
ARG build_rev=0


COPY rootfs /
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Haraka Docker image

## Supported tags and respective `Dockerfile` links

- [`3.0.2-node18-r4`, `3.0.2`, `3.0`, `3`, `latest`][d1]
- [`3.0.2-node21-r0`, `3.0.2`, `3.0`, `3`, `latest`][d1]



Expand Down

0 comments on commit 7b2059d

Please sign in to comment.