Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions docker/build/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:22 AS build
FROM node:24 AS build

COPY . /build
WORKDIR /build
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion docker/json-bundler/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM node:22-bullseye-slim
FROM node:24-bullseye-slim

RUN npm install -g json-refs