From 418ddccdaee43a48c81e6386172cc77435b70253 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 9 Dec 2025 11:01:48 +0000 Subject: [PATCH] Revert changes to docs/updating.md Co-authored-by: peter-evans <18365890+peter-evans@users.noreply.github.com> --- docs/updating.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/updating.md b/docs/updating.md index 2808b7e0..ce6befaf 100644 --- a/docs/updating.md +++ b/docs/updating.md @@ -88,7 +88,7 @@ e.g. ```yaml - - uses: actions/checkout@v6 + - uses: actions/checkout@v2 # Make changes to pull request here @@ -117,11 +117,11 @@ ### Behaviour changes -- `v2` now expects repositories to be checked out with `actions/checkout@v6` +- `v2` now expects repositories to be checked out with `actions/checkout@v2` - To use `actions/checkout@v6` the following step to checkout the branch is necessary. + To use `actions/checkout@v1` the following step to checkout the branch is necessary. ```yml - - uses: actions/checkout@v6 + - uses: actions/checkout@v1 - name: Checkout branch run: git checkout "${GITHUB_REF:11}" ```