diff --git a/.github/workflows/code-samples.yml b/.github/workflows/code-samples.yml index e274dddfa95..ae24a6746e1 100644 --- a/.github/workflows/code-samples.yml +++ b/.github/workflows/code-samples.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Fetch Sources - uses: actions/checkout@v5 + uses: actions/checkout@v6 samples: name: Code Samples / ${{ matrix.plugin }} @@ -44,7 +44,7 @@ jobs: - tree_structure_provider steps: - name: Fetch Sources - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Setup Java uses: actions/setup-java@v5 with: diff --git a/.github/workflows/dependabot-combine-prs.yml b/.github/workflows/dependabot-combine-prs.yml index 1c62ae68d9f..77c88231c11 100644 --- a/.github/workflows/dependabot-combine-prs.yml +++ b/.github/workflows/dependabot-combine-prs.yml @@ -99,7 +99,7 @@ jobs: console.log('Combined: ' + combined); return combined # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 # Creates a branch with other PR branches merged together diff --git a/.github/workflows/generate-android-studio-releases.yml b/.github/workflows/generate-android-studio-releases.yml index 02876be2465..69d4463a859 100644 --- a/.github/workflows/generate-android-studio-releases.yml +++ b/.github/workflows/generate-android-studio-releases.yml @@ -9,7 +9,7 @@ jobs: generate: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Generate run: "${GITHUB_WORKSPACE}/.github/scripts/android_studio_releases.main.kts" - name: Commit changes diff --git a/.github/workflows/generate-descriptor-pages.yml b/.github/workflows/generate-descriptor-pages.yml index 1ccabdfcc4d..03b925f669c 100644 --- a/.github/workflows/generate-descriptor-pages.yml +++ b/.github/workflows/generate-descriptor-pages.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Generate descriptor pages content run: "${GITHUB_WORKSPACE}/.github/scripts/generate_descriptor_pages.main.kts" - name: Check for changes diff --git a/.github/workflows/generate-libraries-releases.yml b/.github/workflows/generate-libraries-releases.yml index 310f5c6978e..4d12c99ef1e 100644 --- a/.github/workflows/generate-libraries-releases.yml +++ b/.github/workflows/generate-libraries-releases.yml @@ -9,7 +9,7 @@ jobs: generate: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Generate run: "${GITHUB_WORKSPACE}/.github/scripts/libraries_releases.main.kts" - name: Commit changes diff --git a/.github/workflows/verify-api-changes-pages.yml b/.github/workflows/verify-api-changes-pages.yml index 595a37511b1..f607e29e484 100644 --- a/.github/workflows/verify-api-changes-pages.yml +++ b/.github/workflows/verify-api-changes-pages.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Fetch Sources - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Setup Java uses: actions/setup-java@v5 with: