From 59fb9e8e11d8bb5fdfbbccfd8b12d35fa850876e Mon Sep 17 00:00:00 2001 From: BlayTheNinth <1933180+BlayTheNinth@users.noreply.github.com> Date: Sat, 11 Nov 2023 17:36:01 +0100 Subject: [PATCH] Fix workflows --- .github/workflows/build.yml | 2 +- .github/workflows/create-release.yml | 2 +- .github/workflows/publish.yml | 2 +- .github/workflows/update-versions.yml | 24 ------------------------ build.gradle | 2 +- 5 files changed, 4 insertions(+), 28 deletions(-) delete mode 100644 .github/workflows/update-versions.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4edd5eb1..b3a6dc8c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -6,5 +6,5 @@ on: jobs: build: - uses: TwelveIterationMods/Workflows/.github/workflows/publish-snapshot.yml@main + uses: TwelveIterationMods/Workflows/.github/workflows/publish-snapshot.yml@v2 secrets: inherit diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index f8733b21..ca6d3065 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -15,7 +15,7 @@ on: jobs: create-release: - uses: TwelveIterationMods/Workflows/.github/workflows/create-release.yml@main + uses: TwelveIterationMods/Workflows/.github/workflows/create-release.yml@v2 with: bump: ${{ github.event.inputs.bump }} secrets: inherit diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 6cc84cc9..b4794e77 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -6,5 +6,5 @@ on: jobs: publish: - uses: TwelveIterationMods/Workflows/.github/workflows/publish-release.yml@main + uses: TwelveIterationMods/Workflows/.github/workflows/publish-release.yml@v2 secrets: inherit \ No newline at end of file diff --git a/.github/workflows/update-versions.yml b/.github/workflows/update-versions.yml deleted file mode 100644 index 86649a6b..00000000 --- a/.github/workflows/update-versions.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: update-versions -on: - workflow_dispatch: - inputs: - minecraftVersion: - description: 'The Minecraft version to update to' - required: true - type: string - channel: - description: 'The release channel to update to, either latest or recommended' - required: false - default: 'latest' - type: choice - options: - - latest - - recommended - -jobs: - update-versions: - uses: TwelveIterationMods/Workflows/.github/workflows/update-versions.yml@main - with: - minecraftVersion: ${{ github.event.inputs.minecraftVersion }} - channel: ${{ github.event.inputs.channel }} - secrets: inherit \ No newline at end of file diff --git a/build.gradle b/build.gradle index e76fe496..acd8aa68 100644 --- a/build.gradle +++ b/build.gradle @@ -2,7 +2,7 @@ plugins { id 'fabric-loom' version '1.2-SNAPSHOT' apply(false) id 'org.spongepowered.gradle.vanilla' version '0.2.1-SNAPSHOT' apply(false) id 'org.spongepowered.mixin' version '0.7-SNAPSHOT' apply(false) - id 'net.darkhax.curseforgegradle' version '1.0.14' apply(false) + id 'net.darkhax.curseforgegradle' version '1.1.16' apply(false) id "com.modrinth.minotaur" version "2.+" apply(false) }