Skip to content

Bump actions/checkout from 4 to 5 #1546

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/code-samples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-combine-prs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generate-android-studio-releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generate-descriptor-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generate-libraries-releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verify-api-changes-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down