Code Monkey home page Code Monkey logo

Comments (3)

rplankenhorn avatar rplankenhorn commented on August 25, 2024

I am also seeing this and we are also using non standard tags. I just tried a workaround that I thought would work but it didn't and failed during the actions/checkout call:

- name: Checkout
  uses: 'actions/checkout@v4'
  with:
     fetch-depth: 0
     ref: develop
- name: Switch to tag
  run: |
     git fetch --all --tags
     git checkout -b customTag [tag]

This is the error I am getting:

/opt/homebrew/bin/git -c protocol.version=2 fetch --prune --no-recurse-submodules origin +refs/heads/*:refs/remotes/origin/* +refs/tags/*:refs/tags/*
remote: Repository not found.
Error: fatal: repository 'https://github.com/xxxx/xxxx/' not found
The process '/opt/homebrew/bin/git' failed with exit code 128
Waiting 11 seconds before trying again
/opt/homebrew/bin/git -c protocol.version=2 fetch --prune --no-recurse-submodules origin +refs/heads/*:refs/remotes/origin/* +refs/tags/*:refs/tags/*
remote: Repository not found.
Error: fatal: repository 'https://github.com/xxxx/xxxx/' not found
Error: The process '/opt/homebrew/bin/git' failed with exit code 128

from checkout.

orhantoy avatar orhantoy commented on August 25, 2024

Can you provide an example workflow of how you were successfully checking out non-standard refs?

from checkout.

oxc avatar oxc commented on August 25, 2024

Sure, here is a minimal example that demonstrates the breakage introduced with 4.1.7 (breakage in a sense regardless of whether or not this ever was officially supported)
https://github.com/oxc/actions-checkout-issue-1782/actions/workflows/demo.yaml

https://github.com/oxc/actions-checkout-issue-1782/blob/main/.github/workflows/demo.yaml

name: Demo for non-standard ref names issue

on:
  workflow_dispatch:

jobs:
  push_ref:
    name: Create non-standard ref name
    runs-on: ubuntu-latest
    outputs:
      ref: ${{ steps.push.outputs.ref }}

    permissions:
      contents: write

    steps:
      - name: Checkout repo
        uses: actions/checkout@v4

      - name: Create dummy commit, and push as non-standard ref
        id: push
        run: |
          git config user.name 'github-actions[bot]'
          git config user.email '41898282+github-actions[bot]@users.noreply.github.com'
          echo "Dummy" > dummy
          git add dummy
          git commit -m 'Dummy commit (run id ${{ github.run_id }})'
          git push origin HEAD:$REF
          echo "ref=$REF" >> "$GITHUB_OUTPUT"
        env:
          REF: "refs/deploy-bot/${{ github.run_id }}/merge"

  checkout_old_working:
    name: Checkout non-standard ref name (working @4.1.6)
    runs-on: ubuntu-latest
    needs: push_ref

    steps:
      - name: Checkout repo
        uses: actions/[email protected]
        with:
          ref: ${{ needs.push_ref.outputs.ref }}

      - name: Show latest commit
        run: |
          git log -1
          cat dummy

  checkout_new_failing:
    name: Checkout non-standard ref name (failing @ > 4.1.6)
    runs-on: ubuntu-latest
    needs: push_ref

    steps:
      - name: Checkout repo
        uses: actions/checkout@v4
        with:
          ref: ${{ needs.push_ref.outputs.ref }}

      - name: Show latest commit
        run: |
          git log -1
          cat dummy

from checkout.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.