diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index ee44e41a..f1f522af 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -12,10 +12,10 @@ jobs: uses: actions/checkout@v4 - name: 📥 Checkout PR - uses: goat-community/.github/.github/actions/pr-git-checkout + uses: goat-community/.github/.github/actions/pr-git-checkout@main - name: 📥 Monorepo install - uses: goat-community/.github/.github/actions/pnpm-install + uses: goat-community/.github/.github/actions/pnpm-install@main with: enable-corepack: true cwd: ${{ github.workspace }} diff --git a/.github/workflows/nextjs-bundle-analysis.yml b/.github/workflows/nextjs-bundle-analysis.yml index 0aab7e65..df89148b 100644 --- a/.github/workflows/nextjs-bundle-analysis.yml +++ b/.github/workflows/nextjs-bundle-analysis.yml @@ -21,10 +21,10 @@ jobs: - name: 📥 Checkout PR if: ${{ github.event_name == 'pull_request' }} - uses: goat-community/.github/.github/actions/pr-git-checkout + uses: goat-community/.github/.github/actions/pr-git-checkout@main - name: 📥 Monorepo install - uses: goat-community/.github/.github/actions/pnpm-install + uses: goat-community/.github/.github/actions/pnpm-install@main with: enable-corepack: true cwd: ${{ github.workspace }} diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index a568bcc5..22726112 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -37,7 +37,7 @@ jobs: typecheck: name: typecheck - uses: ./.github/workflows/check-types.yml + uses: ./.github/workflows/typecheck.yml secrets: inherit lint: diff --git a/.github/workflows/production-build.yml b/.github/workflows/production-build.yml index d755eae3..f83190c4 100644 --- a/.github/workflows/production-build.yml +++ b/.github/workflows/production-build.yml @@ -14,10 +14,10 @@ jobs: uses: actions/checkout@v4 - name: 📥 Checkout PR - uses: goat-community/.github/.github/actions/pr-git-checkout + uses: goat-community/.github/.github/actions/pr-git-checkout@main - name: 📥 Monorepo install - uses: goat-community/.github/.github/actions/pnpm-install + uses: goat-community/.github/.github/actions/pnpm-install@main with: enable-corepack: true cwd: ${{ github.workspace }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0ac3a5c6..0790532f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,7 +12,7 @@ concurrency: jobs: release-docker: name: release - uses: "goat-community/.github/.github/workflows/reusable-docker-build.yml@main" + uses: goat-community/.github/.github/workflows/reusable-docker-build.yml@main permissions: contents: read packages: write diff --git a/.github/workflows/check-types.yml b/.github/workflows/typecheck.yml similarity index 97% rename from .github/workflows/check-types.yml rename to .github/workflows/typecheck.yml index 55d371a4..1f497199 100644 --- a/.github/workflows/check-types.yml +++ b/.github/workflows/typecheck.yml @@ -13,10 +13,10 @@ jobs: uses: actions/checkout@v4 - name: 📥 Checkout PR - uses: goat-community/.github/.github/actions/pr-git-checkout + uses: goat-community/.github/.github/actions/pr-git-checkout@main - name: 📥 Monorepo install - uses: goat-community/.github/.github/actions/pnpm-install + uses: goat-community/.github/.github/actions/pnpm-install@main with: enable-corepack: true cwd: ${{ github.workspace }}