We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Context: I'm trying to clone a private repository containing some actions to launch further...
- name: Clone default repo uses: "actions/checkout@v4" continue-on-error: true with: path: ./src
- name: Clone default repo with token uses: "actions/checkout@v4" continue-on-error: true with: repository: me/myrepo path: ./src2 token: ${{ secrets.GT_TOKEN }}
unable to get local issuer certificate
- name: Clone action repo with token uses: "actions/checkout@v4" continue-on-error: true with: repository: me/actions path: ./actions token: ${{ secrets.GT_TOKEN }}
git fetch
cd "actions" && git status && git fetch
Some more context notes:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Context: I'm trying to clone a private repository containing some actions to launch further...
unable to get local issuer certificate
error message)git fetch
to just work and do it job!Some more context notes:
The text was updated successfully, but these errors were encountered: