Skip to content

[Snyk] Security upgrade axios from 1.4.0 to 1.6.0 #25

[Snyk] Security upgrade axios from 1.4.0 to 1.6.0

[Snyk] Security upgrade axios from 1.4.0 to 1.6.0 #25

Workflow file for this run

name: Docker Image CI
on:
push:
branches: [ "dev" ]
pull_request:
branches: [ "dev" ]
jobs:
shipping:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build Docker image
uses: docker/setup-buildx-action@v2
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
if: github.event_name == 'push'
- name: Ship to Docker Hub
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: profileorg/profile-fe-dev
build-args: |
"API_URL=${{ env.BACKEND_URL }}"
if: github.event_name == 'push'