-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
CI fix #3260
CI fix #3260
Conversation
See docker#3259 attempts for more details Signed-off-by: Christopher Petito <[email protected]>
Signed-off-by: Christopher Petito <[email protected]>
Also updates the |
All failures are related to the requests 2.32+ changes, and will be fixed with #3257 after this CI fix gets merged |
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
fetch-tags: true | ||
- name: make ${{ matrix.variant }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not sure what the expected behavior here is:
$ git clone --depth=0 [email protected]:docker/docker-py.git
fatal: depth 0 is not a positive number
edit: it seems to be checking it out, so nevermind.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it's a value that's valid for the gh action, it just means fetch all essentially
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
https://github.com/actions/checkout for reference
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
We verified all failures are unrelated to this change in #3259, which also contains these changes; bringing this one in so that we can rebase the other PR(s) |
Adds
fetch-depth:0
andfetch-tags: true
to successfully get the repo tags, needed to properly build the library.See #3259 attempts for more details