Skip to content

build(deps): bump pyjwt from 2.8.0 to 2.12.0 #447

build(deps): bump pyjwt from 2.8.0 to 2.12.0

build(deps): bump pyjwt from 2.8.0 to 2.12.0 #447

Workflow file for this run

---
name: dev_container
on:
push:
branches:
- "main"
pull_request:
branches:
- main
workflow_dispatch:
jobs:
docker:
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-24.04
python: "3.12"
- os: ubuntu-24.04-arm
python: "3.12"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Login to Quay.io
if: github.event_name == 'push' && github.ref_name == 'main'
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772
with:
registry: quay.io
username: ${{ secrets.QUAY_USERNAME }}
password: ${{ secrets.QUAY_ROBOT_TOKEN }}
- name: Build and push
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4
env:
QUAY_URI: quay.io/ceph-infra/teuthology-dev
QUAY_TAG: ${{ github.event_name == 'pull_request' && github.head_ref || github.ref_name }}
with:
context: .
file: containers/teuthology-dev/Dockerfile
push: ${{ github.event_name == 'push' && github.ref_name == 'main' }}
tags: ${{ env.QUAY_URI }}:${{ env.QUAY_TAG }}
outputs: type=image,name=target