{"id":25391602,"url":"https://github.com/frantjc/actions","last_synced_at":"2026-04-16T02:31:59.230Z","repository":{"id":276367886,"uuid":"867417313","full_name":"frantjc/actions","owner":"frantjc","description":"My collection of GitHub Actions.","archived":false,"fork":false,"pushed_at":"2025-12-11T23:48:58.000Z","size":13316,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-13T04:48:36.438Z","etag":null,"topics":["ghcr","ghcr-io","github-actions","helm"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/frantjc.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-10-04T03:03:21.000Z","updated_at":"2025-12-11T23:49:01.000Z","dependencies_parsed_at":"2025-02-07T20:28:34.611Z","dependency_job_id":"75755611-208b-40ef-86fe-63ccff7cf2c7","html_url":"https://github.com/frantjc/actions","commit_stats":null,"previous_names":["frantjc/actions"],"tags_count":15,"template":false,"template_full_name":null,"purl":"pkg:github/frantjc/actions","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frantjc%2Factions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frantjc%2Factions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frantjc%2Factions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frantjc%2Factions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/frantjc","download_url":"https://codeload.github.com/frantjc/actions/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frantjc%2Factions/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31868493,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-15T15:24:51.572Z","status":"online","status_checked_at":"2026-04-16T02:00:06.042Z","response_time":69,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ghcr","ghcr-io","github-actions","helm"],"created_at":"2025-02-15T15:56:06.047Z","updated_at":"2026-04-16T02:31:59.222Z","avatar_url":"https://github.com/frantjc.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# actions [![CI](https://github.com/frantjc/actions/actions/workflows/ci.yml/badge.svg?branch=main\u0026event=push)](https://github.com/frantjc/actions/actions)\n\nA collection of GitHub Actions that I often have need for.\n\n## use\n\n### ghcr-delete-images\n\nDelete container images from the ghcr.io registry using GitHub's API. If this is the last version of this package, deletes the package.\n\n```yml\n- uses: frantjc/actions/ghcr-delete-images@v1\n  with:\n    # GitHub token to authenticate with.\n    # Must have read:packages and delete:packages scopes.\n    # Default ${{ github.token }}.\n    token: ${{ secrets.GH_PAT }}\n    # Whitespace-delimited image tags to delete from ghcr.io. Required.\n    tags: |\n      ghcr.io/frantjc/actions:1.0.0\n      ghcr.io/frantjc/actions@sha256:4594271250150c1a322ed749abfd218e1a8c6eb1ade90872e325a664412e2037\n```\n\n### helm-package-push\n\nPackage and push a Helm Chart to an OCI, ChartMuseum or JFrog-Artifactory-compatible http(s) repository.\n\n```yml\n# This action relies on `helm` being installed to work.\n# The simplest way to do this is via https://github.com/azure/setup-helm.\n#  - uses: azure/setup-helm@v4\n# Note, the cm-push plugin is incompatible with Helm v4. See\n# https://github.com/chartmuseum/helm-push/issues/225.\n# To push to ChartMuseum, downgrade to Helm v3:\n#  - uses: azure/setup-helm@v4\n#    with:\n#      version: v3.19.3\n- uses: frantjc/actions/helm-package-push@v1\n  with:\n    # Path to chart to package and push.\n    # Required.\n    chart-path: .\n    # Whether or not to push the packaged chart.\n    # Defaults to true.\n    push: true\n    # Repository to authenticate and push the chart to.\n    # http(s) repositories receive an HTTP PUT with\n    # the Helm Chart .tgz  as the body to the path\n    # /$CHART_NAME-$CHART_VERSION.tgz\n    # with Basic Authentication if username and password are\n    # specified.\n    # Required if push is true.\n    # Examples:\n    #  - cm://chartmuseum.mycorp.net/\n    #  - oci://ghcr.io/frantjc/actions\n    repository: https://jfrog.mycorp.net/artifactory/helm-local\n    # Whether or not to update dependencies when packaging.\n    # Defaults to true.\n    dependency-update: true\n    # Set the appVersion on the chart to this version.\n    app-version: 1.0.0\n    # Set the version on the chart to this SemVer.\n    version: v1.0.0\n    # Repository username.\n    username: ${{ secrets.HELM_REPO_USERNAME }}\n    # Repository password or identity token.\n    password: ${{ secrets.HELM_REPO_PASSWORD }}\n    # Allow connections to TLS repositories without certificate validation.\n    # Defaults to false.\n    insecure: false\n```\n\n### setup-tool\n\nSetup and cache a tool from a GitHub release.\n\n```yml\n- uses: frantjc/actions/setup-tool@v1\n  with:\n    # GitHub token to authenticate with.\n    # Defaults to ${{ github.token }}.\n    token: ${{ secrets.GH_PAT }}\n    # Path to chart to package and push.\n    # Defaults to the current repository.\n    repository: mikefarah/yq\n    # The version of the tool to setup.\n    # Must be one of:\n    #  - Omitted (defaults to the latest release).\n    #  - An exact tag.\n    #  - Coercible into a semver.\n    # Examples:\n    #  - v1.2.3\n    #  - v2.1\n    #  - v3\n    version: v4\n    # The name of the tool to setup.\n    # Defaults to the repository name.\n    tool: yq\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffrantjc%2Factions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffrantjc%2Factions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffrantjc%2Factions/lists"}