From 7fe6c13ac83e8572a115d6d5e45afc880cc4fe7e Mon Sep 17 00:00:00 2001 From: "James M. Greene" Date: Wed, 4 Jan 2023 12:21:58 -0600 Subject: [PATCH 1/2] Update to latest `actions/publish-action` (#363) To avoid Actions core deprecation messages. https://github.com/actions/publish-action/releases/tag/v0.2.1 --- .github/workflows/release-new-action-version.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-new-action-version.yml b/.github/workflows/release-new-action-version.yml index b2a377b..1d0fb7f 100644 --- a/.github/workflows/release-new-action-version.yml +++ b/.github/workflows/release-new-action-version.yml @@ -22,7 +22,7 @@ jobs: steps: - name: Update the ${{ env.TAG_NAME }} tag id: update-major-tag - uses: actions/publish-action@v0.1.0 + uses: actions/publish-action@v0.2.1 with: source-tag: ${{ env.TAG_NAME }} slack-webhook: ${{ secrets.SLACK_WEBHOOK }} From e0057a5b76f2fdad976135e8dd7b691e632b9056 Mon Sep 17 00:00:00 2001 From: George Melikov Date: Wed, 4 Jan 2023 21:34:12 +0300 Subject: [PATCH 2/2] README: Bump actions/checkout to v3 (#352) `Node.js 12 actions are deprecated. For more information see: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/. Please update the following actions to use Node.js 16: actions/checkout, actions/checkout` It's great to have non-deprecated examples. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a8ef47c..0da14ce 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ See [action.yml](action.yml) ```yaml steps: -- uses: actions/checkout@v2 +- uses: actions/checkout@v3 - run: mkdir -p path/to/artifact