From 47c44f0a4acc9a6f02ce8d8ebc7f5517a48a4dc9 Mon Sep 17 00:00:00 2001 From: Martin Boer Date: Thu, 18 Sep 2025 13:41:39 +0200 Subject: [PATCH] :arrow_up: updated node + redoc + actions --- .github/workflows/ci.yml | 4 ++-- docker-compose.yml | 4 ++-- docker/build/Dockerfile | 4 ++-- docker/json-bundler/Dockerfile | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eb10124..cc5f83d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,10 +8,10 @@ jobs: if: github.ref_name == 'develop' || github.ref_name == 'master' || github.ref_type == 'tag' steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Configure AWS Credentials - uses: aws-actions/configure-aws-credentials@v4 + uses: aws-actions/configure-aws-credentials@v5 with: aws-access-key-id: ${{ secrets.AWS_PUBLIC_REPO_ACCESS_KEY }} aws-secret-access-key: ${{ secrets.AWS_PUBLIC_REPO_SECRET_ACCESS_KEY }} diff --git a/docker-compose.yml b/docker-compose.yml index 02e4ab3..5f4366a 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -3,7 +3,7 @@ services: build: context: . dockerfile: docker/json-bundler/Dockerfile - image: myparcelcom/json-bundler:v6-dev + image: myparcelcom/json-bundler:v7-dev working_dir: /opt/spec volumes: - .:/opt/spec @@ -12,7 +12,7 @@ services: build: context: . dockerfile: docker/build/Dockerfile - image: myparcelcom/carrier-specification:v8-dev + image: myparcelcom/carrier-specification:v9-dev volumes: - ./dist:/usr/share/nginx/html/dist/ - ./src/index.html:/usr/share/nginx/html/index.html diff --git a/docker/build/Dockerfile b/docker/build/Dockerfile index 5dde485..170ea05 100644 --- a/docker/build/Dockerfile +++ b/docker/build/Dockerfile @@ -1,4 +1,4 @@ -FROM node:22 AS build +FROM node:24 AS build COPY . /build WORKDIR /build @@ -7,7 +7,7 @@ RUN npm install -g json-refs \ && mkdir -p dist \ && json-refs resolve schema.json -f > dist/swagger.template.json -FROM redocly/redoc:v2.2.0 +FROM redocly/redoc:v2.5.0 ENV SPEC_URL="/dist/swagger.json" ENV PAGE_FAVICON="favicon-16x16.png" diff --git a/docker/json-bundler/Dockerfile b/docker/json-bundler/Dockerfile index 1dcaa21..a2c7f8d 100644 --- a/docker/json-bundler/Dockerfile +++ b/docker/json-bundler/Dockerfile @@ -1,3 +1,3 @@ -FROM node:22-bullseye-slim +FROM node:24-bullseye-slim RUN npm install -g json-refs