diff --git a/.github/cache/action.yml b/.github/cache/action.yml index 718d909..9482903 100644 --- a/.github/cache/action.yml +++ b/.github/cache/action.yml @@ -4,11 +4,6 @@ description: Cache Dependencies runs: using: composite steps: - - name: Checkout Repo - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - name: Install Node.js uses: actions/setup-node@v4 with: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bf028ba..a704742 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,6 +10,11 @@ jobs: build: runs-on: ubuntu-latest steps: + - name: Checkout Repo + uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Setup Continuous integration uses: ./.github/cache diff --git a/.github/workflows/prepublish.yml b/.github/workflows/prepublish.yml index 0045b44..26dcf7e 100644 --- a/.github/workflows/prepublish.yml +++ b/.github/workflows/prepublish.yml @@ -11,6 +11,11 @@ jobs: runs-on: ubuntu-latest steps: + - name: Checkout Repo + uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Setup Continuous integration uses: ./.github/cache diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index aba2750..06e3a6d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,6 +16,11 @@ jobs: release: runs-on: ubuntu-latest steps: + - name: Checkout Repo + uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Setup Continuous integration uses: ./.github/cache