diff --git a/.github/workflows/code-samples.yml b/.github/workflows/code-samples.yml index f58f337e65e..454566f5230 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@v4 + uses: actions/checkout@v5 samples: name: Code Samples / ${{ matrix.plugin }} @@ -43,7 +43,7 @@ jobs: - tree_structure_provider steps: - name: Fetch Sources - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Setup Java uses: actions/setup-java@v4 with: diff --git a/.github/workflows/dependabot-combine-prs.yml b/.github/workflows/dependabot-combine-prs.yml index bfbdc477461..43fb73a56d5 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@v4 + - uses: actions/checkout@v5 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 c009f522ea5..02876be2465 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@v4 + - uses: actions/checkout@v5 - 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 ecd931a5d0a..1ccabdfcc4d 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@v4 + - uses: actions/checkout@v5 - 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 543f043beb4..c89817989fd 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@v4 + - uses: actions/checkout@v5 - 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 dea8d19ade8..475000f963e 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@v4 + uses: actions/checkout@v5 - name: Setup Java uses: actions/setup-java@v4 with: