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

fatal: --local can only be used inside a git repository error on containers #1170

Closed
eitsupi opened this issue Apr 15, 2022 · 12 comments · Fixed by falcosecurity/kernel-crawler#92 or #1792

Comments

@eitsupi
Copy link

eitsupi commented Apr 15, 2022

Subject of the issue

Maybe related to actions/checkout#760.

This action seems to fail on containers using the latest version of Git.
The checkout action had a fix for this yesterday, but I believe other actions like this one continue to be affected.

Steps to reproduce

Use this action on containers like ubuntu:focal.

@peter-evans
Copy link
Owner

Hi @eitsupi

Thank you for bringing this to my attention.

I've confirmed that the workaround provided in that issue works with this action. If you run into this issue, please use the workaround as follows.

      - uses: actions/checkout@v3

      - run: git config --global --add safe.directory "$GITHUB_WORKSPACE"

      # Make changes to pull request here

      - name: Create Pull Request
        uses: peter-evans/create-pull-request@v4

I will work on a fix for this issue soon.

@Dieman89
Copy link

I am still having this issue, is it not fixed? :(
I also tried the workaround but it still gives the same error.

beta-ziliani added a commit to beta-ziliani/crystal-website that referenced this issue Jul 1, 2022
@cat-master21
Copy link

Unfortunately the git config --global --add safe.directory "$GITHUB_WORKSPACE" fix does not work for too @peter-evans.

@tn3rb
Copy link

tn3rb commented Sep 20, 2022

getting the same issue with the following output:

Save persisted git credentials
  /usr/bin/git config --local --name-only --get-regexp http.https://github.com/.extraheader ^AUTHORIZATION:
  fatal: --local can only be used inside a git repository
Determining the base and head repositories
  /usr/bin/git config --local --get remote.origin.url
  fatal: --local can only be used inside a git repository
  Error: The format of '' is not a valid GitHub repository URL
Restore persisted git credentials
  /usr/bin/git config --local --name-only --get-regexp http.https://github.com/.extraheader ^AUTHORIZATION:
  fatal: --local can only be used inside a git repository

@tn3rb
Copy link

tn3rb commented Sep 20, 2022

well I'm happy to report that I made some changes to my action and fixed this error.

I was using this action as part of a multi action workflow and had placed the uses: actions/checkout@v3 step as the first step in my workflow:

        - uses: actions/checkout@v3

        - # other actions

        - name: Create Pull Request
          id: create-pull-request
          uses: peter-evans/create-pull-request@v4

This resulted in the fatal: --local can only be used inside a git repository error.

Moving the uses: actions/checkout@v3 step so that it ran immediately before this action fixed the problem:

        - # other actions
   
     - uses: actions/checkout@v3
   
     - name: Create Pull Request
       id: create-pull-request
       uses: peter-evans/create-pull-request@v4

hope this maybe helps someone else out

vintagesucks added a commit to vintagesucks/imagemagick-deb that referenced this issue Oct 22, 2022
@wmendes-ionos
Copy link

wmendes-ionos commented Nov 1, 2022

I am running into the same issue. I've tried to add git config --global --add safe.directory "$GITHUB_WORKSPACE" on a step earlier but the issue remains. I cannot have steps in order as suggested by @tn3rb.

Any other tip on how to overcome this ?

@peter-evans
Copy link
Owner

For those running into this error and finding this issue, as far as I'm aware, the workaround I posted is the only way to resolve it. If you cannot get your workflow to work with the workaround, then there is probably something you are doing wrong in the workflow.

The official checkout action has "fixed" this issue, but they have done it in a way where the fix doesn't persist to later workflow steps. You can see the fix here: actions/checkout#762

We need to figure out how to address this at an ecosystem level, outside of the checkout action.

They also acknowledge that this is an ecosystem level problem and should probably be solved there somehow. I've haven't attempted to implement a similar fix to checkout because I was hoping they would fix it at the ecosystem level.

To be clear, the "fix" that checkout have made to their action is the same as the workaround. They just do it for you inside the action and remove the config again at the end. I might implement a similar fix at some point, just to make the workaround step unnecessary, but it's not high priority.

@peter-evans
Copy link
Owner

I've created a fix for this which adds the safe.directory configuration for the local repository path at the start of the action, and removes it again at the end.

I'm planning to release this in the near future as part of a new major version. I would really appreciate testing/feedback for this fix. Feel free to use v5-beta in active workflows. I will keep that version available and make sure there is plenty of warning before it's deleted after the v5 release.

      - uses: peter-evans/create-pull-request@v5-beta

@Xtrah
Copy link

Xtrah commented Mar 1, 2023

We are still experiencing issues using v5-beta, getting the same error:

  /usr/bin/git config --local --get remote.origin.url
  fatal: --local can only be used inside a git repository
  Error: The format of '' is not a valid GitHub repository URL

This is our workflow:

name: Scheduled production release
on:
  schedule:
    - cron: "0 0 * * 3"

jobs:
  auto-pull-request:
    name: Create release PR to master
    runs-on: ubuntu-latest
    steps:
      - name: Create Pull Request
        uses: peter-evans/create-pull-request@v5-beta
        with:
          token: ${{ secrets.GITHUB_TOKEN }}
          title: "Weekly production release"
          body: "Weekly release"
          branch: "dev"
          base: "master"
          labels: "ignore-semantic"

Any tips?

@peter-evans
Copy link
Owner

@Xtrah There are a couple of things wrong with your workflow. Firstly, you don't have any checkout step. Secondly, it looks like you are trying to use an existing branch for the branch input. Please see the docs here for an example of what I think you are trying to do. Please make a new issue if you need further help. The problems with your workflow are unrelated to this issue. The error only matches this issue because you haven't run checkout.

@jun2zhou
Copy link

jun2zhou commented Mar 9, 2023

@peter-evans try to use your workaround, there is a security violation to use your create-pull-request
[Error: .github#L1]
peter-evans/create-pull-request@v5 is not allowed to be used. Actions in this workflow must be: within a repository that belongs to your Enterprise account, created by GitHub, or verified in the GitHub Marketplace.

@peter-evans peter-evans mentioned this issue Apr 4, 2023
Merged
@peter-evans
Copy link
Owner

This is now fixed in v5.0.0 / v5.

If you are using v5-beta or v5-rc, please update to v5. I will remove pre-release versions after 4 weeks. Thank you for testing the pre-release version!

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