From a7d36fe3f4cd724abad3a128a7ad65b2519930ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Dunglas?= Date: Fri, 19 Dec 2025 16:49:26 +0100 Subject: [PATCH] docs: upgrade actions/checkout from v5 to v6 Updated GitHub Actions checkout action from v5 to v6 in multiple sections of the README. --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index b9c2fa3c..1b19a6fb 100644 --- a/README.md +++ b/README.md @@ -115,7 +115,7 @@ See [action.yml](action.yml) ```yaml steps: -- uses: actions/checkout@v5 +- uses: actions/checkout@v6 - uses: actions/setup-node@v6 with: node-version: 24 @@ -164,7 +164,7 @@ See the examples of using cache for `yarn`/`pnpm` and `cache-dependency-path` in ```yaml steps: -- uses: actions/checkout@v5 +- uses: actions/checkout@v6 - uses: actions/setup-node@v6 with: node-version: 24 @@ -177,7 +177,7 @@ steps: ```yaml steps: -- uses: actions/checkout@v5 +- uses: actions/checkout@v6 - uses: actions/setup-node@v6 with: node-version: 24 @@ -193,7 +193,7 @@ This behavior is controlled by the `package-manager-cache` input, which defaults ```yaml steps: -- uses: actions/checkout@v5 +- uses: actions/checkout@v6 - uses: actions/setup-node@v6 with: package-manager-cache: false @@ -212,7 +212,7 @@ jobs: node: [ 20, 22, 24 ] name: Node ${{ matrix.node }} sample steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Setup node uses: actions/setup-node@v6 with: