Skip to content

Commit

Permalink
chore: cleanup untagged images (#171)
Browse files Browse the repository at this point in the history
  • Loading branch information
tataranovich authored Nov 14, 2024
1 parent ff993da commit b2dc43b
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/cleanup-untagged-images.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Cleanup untagged images

on:
schedule:
- cron: "0 0 * * *"

jobs:
clean:
name: Delete untagged images
runs-on: ubuntu-latest
permissions:
packages: write
steps:
- uses: snok/container-retention-policy@4f22ef80902ad409ed55a99dc5133cc1250a0d03 # v3.0.0
with:
account: ${{ github.repository_owner }}
token: ${{ secrets.GITHUB_TOKEN }}
image-names: ${{ github.event.repository.name }}
tag-selection: "untagged"
cut-off: "1d"
13 changes: 13 additions & 0 deletions trivy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Trivy configuration file
# https://aquasecurity.github.io/trivy/latest/docs/references/configuration/config-file/
# Can be deleted after public ecr mirror will be added by default
db:
no-progress: true
repository:
- ghcr.io/aquasecurity/trivy-db:2
- public.ecr.aws/aquasecurity/trivy-db:2
java-repository:
- ghcr.io/aquasecurity/trivy-java-db:1
- public.ecr.aws/aquasecurity/trivy-java-db:1
misconfiguration:
checks-bundle-repository: public.ecr.aws/aquasecurity/trivy-checks

0 comments on commit b2dc43b

Please sign in to comment.