Skip to content

Bump secp256k1 from 4.0.3 to 4.0.4 in /subgraphs/starter-example (#155) #64

Bump secp256k1 from 4.0.3 to 4.0.4 in /subgraphs/starter-example (#155)

Bump secp256k1 from 4.0.3 to 4.0.4 in /subgraphs/starter-example (#155) #64

name: Release Integration Environment
on:
push:
branches: [ main ]
workflow_dispatch:
defaults:
run:
shell: bash
permissions:
contents: read
packages: write
env:
OWNER: hashgraph
REGISTRY: ghcr.io
jobs:
publish:
name: Publish
runs-on: smart-contracts-linux-medium
steps:
- name: Harden Runner
uses: step-security/harden-runner@c95a14d0e5bab51a9f56296a4eb0e416910cd350 # v2.10.3
with:
egress-policy: audit
- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Login to GitHub Container Registry
uses: docker/login-action@0d4c9c5ea7693da7b068278f7b52bda2a190a446 # v3.2.0
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Docker Qemu
uses: docker/setup-qemu-action@53851d14592bedcffcf25ea515637cff71ef929a # v3.3.0
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3.8.0
with:
driver-opts: network=host
- name: Build and push images
uses: docker/build-push-action@b32b51a8eda65d6793cd0494a773d4f6bcef32dc # v6.11.0
with:
context: ./auth-layer-proxy
file: ./auth-layer-proxy/Dockerfile
cache-from: type=gha
cache-to: type=gha,mode=max
platforms: linux/amd64
push: true
tags: ${{ env.REGISTRY }}/${{ github.repository }}:auth-layer-proxy-main