From 7b55b8ba866e69e1a330fba02ccd32cd7b3155d1 Mon Sep 17 00:00:00 2001 From: Wayne Warthen Date: Tue, 8 Nov 2022 16:16:19 -0800 Subject: [PATCH 1/4] Update commit.yml Use "latest" version of all actions. --- .github/workflows/commit.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/commit.yml b/.github/workflows/commit.yml index 35b049ee..e9fdcd3c 100644 --- a/.github/workflows/commit.yml +++ b/.github/workflows/commit.yml @@ -14,9 +14,9 @@ jobs: runs-on: ubuntu-latest steps: - - uses: rlespinasse/github-slug-action@v3.x + - uses: rlespinasse/github-slug-action@latest - - uses: actions/checkout@v2 + - uses: actions/checkout@latest - name: Build run: | @@ -33,7 +33,7 @@ jobs: find -type f -exec md5sum '{}' \; - name: Upload Artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@latest with: name: RomWBW_Linux-${{env.GITHUB_REF_SLUG}}-${{env.GITHUB_SHA_SHORT}} path: . @@ -56,7 +56,7 @@ jobs: runs-on: macos-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@latest - name: Build run: | @@ -72,7 +72,7 @@ jobs: find . -type f -exec md5 -r -- '{}' +; - name: Upload Artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@latest with: name: RomWBW_MacOS path: . From e8d0eedc2b47ecc28c97e3fd53e17e31a2c8755e Mon Sep 17 00:00:00 2001 From: Wayne Warthen Date: Tue, 8 Nov 2022 16:22:49 -0800 Subject: [PATCH 2/4] Update commit.yml Need to use explicit version for actions/checkout apparently. --- .github/workflows/commit.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/commit.yml b/.github/workflows/commit.yml index e9fdcd3c..68bdb5c0 100644 --- a/.github/workflows/commit.yml +++ b/.github/workflows/commit.yml @@ -16,7 +16,7 @@ jobs: steps: - uses: rlespinasse/github-slug-action@latest - - uses: actions/checkout@latest + - uses: actions/checkout@v3.1.0 - name: Build run: | @@ -56,7 +56,7 @@ jobs: runs-on: macos-latest steps: - - uses: actions/checkout@latest + - uses: actions/checkout@v3.1.0 - name: Build run: | From c204110a6f2e296ec0d47ac4aec7cc6308d2450b Mon Sep 17 00:00:00 2001 From: Wayne Warthen Date: Tue, 8 Nov 2022 16:25:16 -0800 Subject: [PATCH 3/4] Update commit.yml Also explicit version for actions/upload-artifact. --- .github/workflows/commit.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/commit.yml b/.github/workflows/commit.yml index 68bdb5c0..a95e7838 100644 --- a/.github/workflows/commit.yml +++ b/.github/workflows/commit.yml @@ -33,7 +33,7 @@ jobs: find -type f -exec md5sum '{}' \; - name: Upload Artifact - uses: actions/upload-artifact@latest + uses: actions/upload-artifact@v3.1.1 with: name: RomWBW_Linux-${{env.GITHUB_REF_SLUG}}-${{env.GITHUB_SHA_SHORT}} path: . @@ -43,7 +43,7 @@ jobs: zip -r RomWBW-SnapShot-Package.zip . - name: Post SnapShot - uses: "marvinpinto/action-automatic-releases@latest" + uses: marvinpinto/action-automatic-releases@latest with: repo_token: "${{ secrets.GITHUB_TOKEN }}" automatic_release_tag: "SnapShot" @@ -72,7 +72,7 @@ jobs: find . -type f -exec md5 -r -- '{}' +; - name: Upload Artifact - uses: actions/upload-artifact@latest + uses: actions/upload-artifact@v3.1.1 with: name: RomWBW_MacOS path: . From 601ac667620d4f918b21d09a74620fc5cd88ba53 Mon Sep 17 00:00:00 2001 From: Wayne Warthen Date: Tue, 8 Nov 2022 16:29:11 -0800 Subject: [PATCH 4/4] Update commit.yml Add also github-slug-action. --- .github/workflows/commit.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/commit.yml b/.github/workflows/commit.yml index a95e7838..caf93121 100644 --- a/.github/workflows/commit.yml +++ b/.github/workflows/commit.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: rlespinasse/github-slug-action@latest + - uses: rlespinasse/github-slug-action@v4.4.0 - uses: actions/checkout@v3.1.0