Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [16, 18]
node-version: [20, 22, 24]
os: [ubuntu-latest, windows-latest]

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
Expand All @@ -45,12 +45,12 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Use Node.js 20
uses: actions/setup-node@v3
- name: Use Node.js 24
uses: actions/setup-node@v4
with:
node-version: 20
node-version: 24
cache: "npm"

- name: Install
Expand Down
2 changes: 1 addition & 1 deletion docker/images/alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:16-alpine
FROM node:24-alpine
LABEL maintainer="Postman Labs <[email protected]>"

ARG NEWMAN_VERSION
Expand Down
2 changes: 1 addition & 1 deletion docker/images/alpine/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# newman:alpine

This image runs newman on node v16 on Alpine
This image runs newman on node v24 on Alpine

Build the image:

Expand Down
4 changes: 2 additions & 2 deletions docker/images/ubuntu/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM ubuntu:22.04
FROM ubuntu:24.04
LABEL maintainer="Postman Labs <[email protected]>"

ARG NODE_MAJOR=16
ARG NODE_MAJOR=24
ARG NEWMAN_VERSION

# Bail out early if NEWMAN_VERSION is not provided
Expand Down
2 changes: 1 addition & 1 deletion docker/images/ubuntu/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# newman:ubuntu

This image runs newman on node v16 on Ubuntu 22.04
This image runs newman on node v24 on Ubuntu 24.04

Build the image,

Expand Down