Skip to content

Bump cryptography from 42.0.2 to 42.0.3 #29

Bump cryptography from 42.0.2 to 42.0.3

Bump cryptography from 42.0.2 to 42.0.3 #29

Workflow file for this run

name: Docker Container CI
on:
push:
branches:
- trunk
pull_request:
branches:
- trunk
release:
types:
- published
permissions:
contents: read
packages: write
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
labels:
org.opencontainers.image.licenses=MPL-2.0
- name: Log in to GHCR
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.action }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and publish Docker image
uses: docker/build-push-action@v5
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}