From 9d05012fe91f2098068b09fe0932332457e03f7b Mon Sep 17 00:00:00 2001 From: Virus5600 Date: Mon, 30 Dec 2024 10:13:11 +0800 Subject: [PATCH] Update 20241230 - Actions Rework --- .github/workflows/build.yml | 3 +++ .github/workflows/fabric.yml | 3 +++ .github/workflows/prep.yml | 3 --- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3449cbc..d1b98de 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,6 +21,9 @@ jobs: runs-on: ${{ matrix.os }} steps: + - name: Checkout Repository + uses: actions/checkout@v4 + - name: Prepare Testing uses: ./.github/workflows/prep.yml with: diff --git a/.github/workflows/fabric.yml b/.github/workflows/fabric.yml index 3a74a37..146fe13 100644 --- a/.github/workflows/fabric.yml +++ b/.github/workflows/fabric.yml @@ -13,6 +13,9 @@ jobs: runs-on: ${{ matrix.os }} steps: + - name: Checkout Repository + uses: actions/checkout@v4 + - name: Prepare Testing uses: ./.github/workflows/prep.yml with: diff --git a/.github/workflows/prep.yml b/.github/workflows/prep.yml index 003939e..5bff746 100644 --- a/.github/workflows/prep.yml +++ b/.github/workflows/prep.yml @@ -15,9 +15,6 @@ inputs: runs: using: "composite" steps: - - name: Checkout Repository - uses: actions/checkout@v4 - - name: Validate Gradle Wrapper uses: gradle/wrapper-validation-action@v1