From 81098a8bdd2cace3f25287b9d357b8971e19185d Mon Sep 17 00:00:00 2001 From: Guillaume Falourd Date: Fri, 5 Apr 2024 14:10:35 -0300 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0931dc1..023df6d 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ _**Note**: This action is supported on **all runners** operating systems (`ubunt ```yaml steps: - - uses: actions/checkout@v2.3.4 + - uses: actions/checkout@v4 # [...] --> steps with actions or commands updating repository files - uses: GuillaumeFalourd/git-commit-push@v1.3 ``` @@ -31,7 +31,7 @@ _**Note**: This action is supported on **all runners** operating systems (`ubunt ```yaml steps: - - uses: actions/checkout@v2.3.4 + - uses: actions/checkout@v4 # [...] --> steps with actions or commands updating repository files - uses: GuillaumeFalourd/git-commit-push@v1.3 with: @@ -59,7 +59,7 @@ fatal: unable to access 'https://github.com///': The requeste This can be resolved by adding `persist-credentials: false` and `fetch-depth: 0` to the workflow configurations when using the `actions/checkout`. ```yaml - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of the personal access token. fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.