Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ghcr.io: List packages based on whether owner is an org or a user #180

Open
wants to merge 5 commits into
base: main
Choose a base branch
from

Conversation

ribbybibby
Copy link
Member

We were previously using releases to figure out tags for a Github package. I think this was wrong. Not all release tags will be pushed as package versions, and vice versa. Someone may choose to use GHCR without taking advantage of releases at all.

I've modified it so that the client will check if the owner is a user or an org and then make the appropriate PackageGetAllVersions function call to retrieve the tags.

I've also fixed a few other things I ran into while testing this:

  1. Create the github client in New so that rate limiting and other goodness is reused across calls.
  2. Fix RepoImageFromPath, so it will split the repository path into the 'owner' and 'repo' segments that Tags expects. Previously we would have got errors for subrepositories.
  3. Update TestRepoImage to ensure it doesn't panic on unexpected inputs.
  4. We don't need to use regex to match ghcr.io to ghcr.io.
  5. If we're excluding .att tags then we should probably exclude .sig and .sbom too.

Fixes #179, #175

We were previously using releases to figure out tags for a Github
package. I think this was wrong. Not all release tags will be pushed as
package versions, and vice versa. Someone may choose to use GHCR without
taking advantage of releases at all.

I've modified it so that the client will check if the owner is a user or
an org and then make the appropriate PackageGetAllVersions function call
to retrieve the tags.

I've also fixed a few other things I ran into while testing this:
1. Create the github client in `New` so that rate limiting and other
   goodness is reused across calls.
2. Fix `RepoImageFromPath`, so it will split the repository path into the
   'owner' and 'repo' segments that `Tags` expects. Previously we would
   have got errors for subrepositories.
3. Update `TestRepoImage` to ensure it doesn't panic on unexpected
   inputs.
4. We don't need to use regex to match `ghcr.io` to `ghcr.io`.
5. If we're excluding `.att` tags then we should probably exclude `.sig`
   and `.sbom` too.
@hawksight
Copy link

Appreciate the contextual description at the top of the PR @ribbybibby. I've added issue / thoughts on the existing comments. I think it'd be good to merge and fix for users of ghcr.io.

@davidcollom I'll defer to you for approval. My Go isn't good enough to properly review. But from a "this is what the PR tackles" perspective I give it 👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Cannot check packages stored on the Github Container Registry
3 participants