Skip to content
This repository has been archived by the owner on Mar 6, 2024. It is now read-only.

Bump actions/checkout from 3 to 4 #455

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
2 changes: 1 addition & 1 deletion .github/workflows/combine-prs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ jobs:

return "ok"
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
# Creates a branch with other PR branches merged together
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/openai-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
review:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Image description CodeRabbit

The change from actions/checkout@v3 to actions/checkout@v4 is a major version upgrade. It's important to ensure that this doesn't introduce breaking changes. From the release notes, it seems like the main changes are updating the default runtime to node20 and supporting fetching without the --progress option. If these changes align with your project requirements, then this upgrade should be fine.

- uses: actions/checkout@v3
+ uses: actions/checkout@v4

with:
repository: ${{github.event.pull_request.head.repo.full_name}}
ref: ${{github.event.pull_request.head.ref}}
Expand Down