From 28d2e5fc3b894759087f0abf30ac47b756681479 Mon Sep 17 00:00:00 2001 From: Danila Vershinin Date: Sun, 8 Sep 2024 12:41:01 +0800 Subject: [PATCH] Update GitHub Actions checkout to v4 Upgraded the GitHub Actions checkout step from v2 to v4 in the docker-build workflow. This change ensures compatibility with the latest features and improvements in the actions/checkout repository. --- .github/workflows/docker-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docker-build.yml b/.github/workflows/docker-build.yml index 99232ce..5e6fd2f 100644 --- a/.github/workflows/docker-build.yml +++ b/.github/workflows/docker-build.yml @@ -61,7 +61,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2