Skip to content

⬆️ Bump cryptography from 45.0.2 to 45.0.3 #434

⬆️ Bump cryptography from 45.0.2 to 45.0.3

⬆️ Bump cryptography from 45.0.2 to 45.0.3 #434

Workflow file for this run

name: Docker Image CI
on:
# Using pattern as described in https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#using-filters
pull_request:
branches:
- main
push:
branches:
- main
# Allow manual trigger
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: echo "Job being triggered by ${{ github.event_name }} event"
- name: Build the Codespaces container image
run: docker build . --file .devcontainer/Dockerfile
- run: echo "Job status is ${{ job.status }}."