From e03b5c50cccd686168f7fda06cc7cf9ec4bd1989 Mon Sep 17 00:00:00 2001 From: Parnic Date: Sun, 21 Jul 2024 13:48:33 -0500 Subject: [PATCH] Update to current versions of actions --- .github/workflows/release.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 62166fc..d9649df 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,31 +31,31 @@ jobs: # we first have to clone the AddOn project, this is a required step - name: Clone project - uses: actions/checkout@v1 + uses: actions/checkout@v4 # once cloned, we just run the GitHub Action for the packager project - name: Package and release - uses: BigWigsMods/packager@master + uses: BigWigsMods/packager@v2 # another example where we supply additional arguments, this example is specifically to release # for the Classic version of the game - name: Package and release for Classic - uses: BigWigsMods/packager@master + uses: BigWigsMods/packager@v2 with: args: -g classic -w 0 - name: Package and release for TBC - uses: BigWigsMods/packager@master + uses: BigWigsMods/packager@v2 with: args: -g bcc -w 0 - name: Package and release for Wrath - uses: BigWigsMods/packager@master + uses: BigWigsMods/packager@v2 with: args: -g wrath -w 0 - name: Package and release for Cataclysm - uses: BigWigsMods/packager@master + uses: BigWigsMods/packager@v2 with: args: -g cata -w 0 \ No newline at end of file