From 92f256117b99b8078006c602f7e33e2bc2e3ef05 Mon Sep 17 00:00:00 2001 From: tripolonelm <68231391+tripolonelm@users.noreply.github.com> Date: Wed, 3 Jul 2024 09:04:30 -0400 Subject: [PATCH] Update actions in autopep8.yml Updated actions/checkout, create-or-update-comment, create-pull-request to lastest versions to address node.js deprecation warnings --- .github/workflows/autopep8.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/autopep8.yml b/.github/workflows/autopep8.yml index b5ce473..12d7b02 100644 --- a/.github/workflows/autopep8.yml +++ b/.github/workflows/autopep8.yml @@ -6,13 +6,13 @@ jobs: autopep8: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: autopep8 uses: ./ with: args: --recursive --in-place --aggressive --aggressive . - name: Create Pull Request - uses: peter-evans/create-pull-request@v3 + uses: peter-evans/create-pull-request@v6 with: commit-message: autopep8 action fixes title: Fixes by autopep8 action @@ -21,7 +21,7 @@ jobs: reviewers: peter-evans branch: autopep8-patches - name: Add reaction - uses: peter-evans/create-or-update-comment@v1 + uses: peter-evans/create-or-update-comment@v4 with: repository: ${{ github.event.client_payload.github.payload.repository.full_name }} comment-id: ${{ github.event.client_payload.github.payload.comment.id }}