From 73521c9e6e56e147550cc7833a5e66b9f2239262 Mon Sep 17 00:00:00 2001 From: Rufus Emmanuel Date: Sat, 23 Nov 2024 20:07:42 +0100 Subject: [PATCH] Update actions/checkout to v3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit updates the ‘actions/checkout’ action from version v1 to v3 in the GitHub Actions workflows. The latest version, v3, provides several performance improvements, bug fixes, and new features compared to v1. Upgrading to v3 ensures compatibility with the latest GitHub Actions improvements and adheres to best practices for CI/CD workflows. --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1170ab2658..6149f2b47d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -11,7 +11,7 @@ jobs: Jest: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v3 - name: Run Tests run: | yarn install