From 77fc610aadb1479bc4a98ef9e464651ae8bb82fb Mon Sep 17 00:00:00 2001 From: Nico Korthout Date: Sat, 28 Oct 2023 17:03:11 +0200 Subject: [PATCH] docs(README): bump actions/checkout to v4 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e32b948..07d9588 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ jobs: # Don't run on closed unmerged pull requests if: github.event.pull_request.merged steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Create backport pull requests uses: korthout/backport-action@v1 ``` @@ -93,7 +93,7 @@ jobs: contains(github.event.comment.body, '/backport') ) steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Create backport pull requests uses: korthout/backport-action@v1 ```