Skip to content

[Snyk] Security upgrade express from 4.17.3 to 4.21.2 #43

[Snyk] Security upgrade express from 4.17.3 to 4.21.2

[Snyk] Security upgrade express from 4.17.3 to 4.21.2 #43

Workflow file for this run

name: Docker Image CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build the Docker image
run: docker build . --file Dockerfile --tag ghcr.io/killahb33/rgb-matrix-app:$(date +%Y%m%d) --tag ghcr.io/killahb33/rgb-matrix-app:latest
- name: Login to GitHub Container Registry
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
- name: Push Docker image
run: |
docker push ghcr.io/killahb33/rgb-matrix-app:latest
docker push ghcr.io/killahb33/rgb-matrix-app:$(date +%Y%m%d)