Skip to content

Bump certifi from 2024.6.2 to 2024.7.4 in the pip group #18

Bump certifi from 2024.6.2 to 2024.7.4 in the pip group

Bump certifi from 2024.6.2 to 2024.7.4 in the pip group #18

Workflow file for this run

name: Github Container Registry Cleaner
on:
schedule:
- cron: "0 4 * * *"
pull_request:
types:
- closed
jobs:
delete_old_images:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: 'Delete untagged images'
if: github.event_name == 'schedule'
uses: dataaxiom/ghcr-cleanup-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: 'Clean up development images'
if: github.event_name == 'pull_request'
uses: dataaxiom/ghcr-cleanup-action@v1
with:
tags: 'pr-${{github.event.pull_request.number}}'
token: ${{ secrets.GITHUB_TOKEN }}