From 86ca0ea0d6f7277d74125b186998291740bbb2c2 Mon Sep 17 00:00:00 2001 From: Danil Ovchinnikov Date: Thu, 29 Jan 2026 18:39:41 +0300 Subject: [PATCH] update `actions/checkout` action --- .github/workflows/build.yml | 10 +++++----- .github/workflows/release.yml | 2 +- .github/workflows/run-ui-tests.yml | 2 +- .github/workflows/template-cleanup.yml | 2 +- .github/workflows/template-verify.yml | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ba7132a..7dea192 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -41,7 +41,7 @@ jobs: # Check out the current repository - name: Fetch Sources - uses: actions/checkout@v5 + uses: actions/checkout@v6 # Set up the Java environment for the next steps - name: Setup Java @@ -92,7 +92,7 @@ jobs: # Check out the current repository - name: Fetch Sources - uses: actions/checkout@v5 + uses: actions/checkout@v6 # Set up the Java environment for the next steps - name: Setup Java @@ -146,7 +146,7 @@ jobs: # Check out the current repository - name: Fetch Sources - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit fetch-depth: 0 # a full history is required for pull request analysis @@ -180,7 +180,7 @@ jobs: # Check out the current repository - name: Fetch Sources - uses: actions/checkout@v5 + uses: actions/checkout@v6 # Set up the Java environment for the next steps - name: Setup Java @@ -220,7 +220,7 @@ jobs: # Check out the current repository - name: Fetch Sources - uses: actions/checkout@v5 + uses: actions/checkout@v6 # Remove old release drafts by using the curl request for the available releases with a draft flag - name: Remove Old Release Drafts diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 869d489..b0ec5d9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,7 +27,7 @@ jobs: # Check out the current repository - name: Fetch Sources - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ github.event.release.tag_name }} diff --git a/.github/workflows/run-ui-tests.yml b/.github/workflows/run-ui-tests.yml index dca12a7..b78220a 100644 --- a/.github/workflows/run-ui-tests.yml +++ b/.github/workflows/run-ui-tests.yml @@ -33,7 +33,7 @@ jobs: # Check out the current repository - name: Fetch Sources - uses: actions/checkout@v5 + uses: actions/checkout@v6 # Set up the Java environment for the next steps - name: Setup Java diff --git a/.github/workflows/template-cleanup.yml b/.github/workflows/template-cleanup.yml index f91d0b1..41b2199 100644 --- a/.github/workflows/template-cleanup.yml +++ b/.github/workflows/template-cleanup.yml @@ -19,7 +19,7 @@ jobs: # Check out the current repository - name: Fetch Sources - uses: actions/checkout@v5 + uses: actions/checkout@v6 # Cleanup project - name: Cleanup diff --git a/.github/workflows/template-verify.yml b/.github/workflows/template-verify.yml index 8c56c00..b0514d5 100644 --- a/.github/workflows/template-verify.yml +++ b/.github/workflows/template-verify.yml @@ -23,7 +23,7 @@ jobs: # Check out the current repository - name: Fetch Sources - uses: actions/checkout@v5 + uses: actions/checkout@v6 # Compare `gradle.properties` with `.github/template-cleanup/gradle.properties` - name: Verify gradle.properties