Skip to content

chore(deps): bump axios from 1.3.4 to 1.6.0 (#22) #22

chore(deps): bump axios from 1.3.4 to 1.6.0 (#22)

chore(deps): bump axios from 1.3.4 to 1.6.0 (#22) #22

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Staging
on:
push:
branches: [main]
paths-ignore:
- '**/README.md'
- 'k8s/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/arm64,linux/amd64
push: true
tags: ghcr.io/${{github.repository}}:main
cache-from: type=gha
cache-to: type=gha,mode=max