Skip to content

Commit

Permalink
Upgrade libs
Browse files Browse the repository at this point in the history
  • Loading branch information
duncte123 committed Jun 29, 2024
1 parent 5510824 commit 73859d7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,27 +14,27 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v3

- name: Cache Docker layers
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v2
uses: docker/build-push-action@v3
with:
context: .
push: true
Expand Down
3 changes: 1 addition & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@
FROM node:lts AS redoc
WORKDIR /redoc

RUN npm -g install redoc-cli
COPY template.hbs ./
RUN redoc-cli build https://oengus.io/api/v3/api-docs -t template.hbs
RUN npx @redocly/cli build-docs https://oengus.io/api/v3/api-docs -t template.hbs
RUN ls -hal


Expand Down

0 comments on commit 73859d7

Please sign in to comment.