Skip to content
This repository has been archived by the owner on Oct 15, 2024. It is now read-only.

Commit

Permalink
chore: update npm dependencies, Node and github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ismarslomic committed Oct 15, 2024
1 parent 759d296 commit 0becd08
Show file tree
Hide file tree
Showing 4 changed files with 598 additions and 262 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ jobs:
steps:
# Get the repository's code
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

# Extract metadata from GIT to use in Docker Build Push step, see https://github.com/docker/metadata-action
- name: Docker meta
id: meta
uses: docker/metadata-action@v4
uses: docker/metadata-action@v5
with:
images: |
# list of Docker images to use as base name for tags
Expand All @@ -36,23 +36,24 @@ jobs:
# https://github.com/docker/setup-qemu-action
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3

# Support multiple architectures, https://github.com/docker/setup-buildx-action
# Support multiple architectures,
# https://github.com/docker/setup-buildx-action
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2

# https://github.com/docker/login-action
- name: Login to Docker Hub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}

# https://github.com/docker/build-push-action/
- name: Build and push
uses: docker/build-push-action@v3
uses: docker/build-push-action@v6
with:
context: .
platforms: linux/amd64,linux/arm/v7,linux/arm64
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18.3.0-alpine3.16
FROM node:22.9.0-bookworm-slim

LABEL maintainer="Ismar Slomic <[email protected]>"

Expand Down
Loading

0 comments on commit 0becd08

Please sign in to comment.