Skip to content

Bump elliptic from 6.5.3 to 6.6.0 #27

Bump elliptic from 6.5.3 to 6.6.0

Bump elliptic from 6.5.3 to 6.6.0 #27

Workflow file for this run

name: CD
on: push
jobs:
build-and-publish:
runs-on: ubuntu-latest
outputs:
tags: ${{ steps.meta.outputs.tags }}
env:
DOCKER_BUILDKIT: 1
steps:
- uses: actions/checkout@v4
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository }}
tags: |
type=ref,event=branch,suffix=-{{sha}}
type=ref,event=pr,suffix=-{{sha}}
type=sha,prefix={{date 'YYYY-MM-DD-'}},enable={{is_default_branch}}
type=raw,value=latest,enable={{is_default_branch}}
- name: Log in to the Container registry
uses: docker/login-action@v3.0.0
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
push: ${{ github.actor != 'dependabot[bot]' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}