From 533669629223faec373cc43adb31e347f48b0414 Mon Sep 17 00:00:00 2001 From: Eshnek <89618355+Eshnek@users.noreply.github.com> Date: Sun, 19 Feb 2023 07:38:38 -0700 Subject: [PATCH] Checkout v2 to v3 --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index d649c54..4c5d9f6 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ job: steps: # Check YOUR project out! - name: "Check out repository" - uses: actions/checkout@v2 + uses: actions/checkout@v3 # Prepare a build - name: "Prepare build" @@ -79,7 +79,7 @@ job: steps: # Check YOUR project out! - name: "Check out repository" - uses: actions/checkout@v2 + uses: actions/checkout@v3 # Prepare a build - name: "Prepare build" @@ -114,7 +114,7 @@ job: steps: # Check YOUR project out! - name: "Check out repository" - uses: actions/checkout@v2 + uses: actions/checkout@v3 # Prepare a build - name: "Prepare build" @@ -156,7 +156,7 @@ job: steps: # Check YOUR project out! - name: "Check out repository" - uses: actions/checkout@v2 + uses: actions/checkout@v3 # Prepare a build - name: "Prepare build" @@ -194,7 +194,7 @@ runs: # automatically downloads the "after-merge" state of the pull request if # there are no conflicts.) - name: "Check out repository" - uses: actions/checkout@v2 + uses: actions/checkout@v3 # Prepare a build - name: "Prepare build" @@ -262,7 +262,7 @@ job: steps: # Check YOUR project out! - name: "Check out repository" - uses: actions/checkout@v2 + uses: actions/checkout@v3 # Perform the analysis. Details vary between analysers! # Example for "PyLint" added below!