checkout icon indicating copy to clipboard operation
checkout copied to clipboard

Action for checking out a repo

Results 448 checkout issues
Sort by recently updated
recently updated
newest added

Hi! The current `user.*` `git-config` example has the issue https://github.com/orgs/community/discussions/26560.

This will update actions/upload-artifact and actions/setup-node to v2 and v3, and actions/codeql versions as they are outdated currently.

This partially fixes #940 by updating the description to match the request. However I'm assuming the runner adds in the `Action` p[![Build and Test](https://github.com/actions/checkout/actions/workflows/test.yml/badge.svg)](https://github.com/actions/checkout/actions/workflows/test.yml)art by truncating the description? cc @bryanmacfarlane

In some workflow its required to checkout several repositories. Doing so in separate sequential steps requires a lot of time. It would be great to run several checkouts in parallel...

We're using the matrix feature with 10 concurrent jobs if that's of any relevance

So, a colleague has a repository with a submodule that's been removed incorrectly. The link still persists in the tree somehow, but the .gitmodules file has been removed. The checkout...

Couple of days back this action stopped working. ``` - name: Checkout private tools uses: actions/checkout@v2 with: repository: tectonic/infrastructure-helm token: ${{ secrets.GIT_TECHDEPLOY_TOKEN }} path: infrastructure-helm fetch-depth: 0 ref: master ```...

Using this action with `lfs: true` and I create a PR which modifies some images used for snapshot tests, subsequent runs on the same CI machine with different branches that...

When running checkout with `fetch-depth: 0` on a tag ref, checkout clobbers the fetched tag by replacing it with its own lightweight tag. The cause of this is `testRef` is...

Hello, I'm attempting a rollback flow using `actions/checkout@v2`. The problem is that I need to use a PAT in order to rollback commits that change Github Workflows and when I...