-
Notifications
You must be signed in to change notification settings - Fork 3
chore(deps): Bump actions/checkout from 3 to 6 #138
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -18,7 +18,7 @@ jobs: | |||||||||||||
|
|
||||||||||||||
| steps: | ||||||||||||||
| - name: Checkout repository | ||||||||||||||
| uses: actions/checkout@v4 | ||||||||||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Consistently using the latest
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Maintaining up-to-date versions of GitHub Actions, like this update to
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This update to
Suggested change
|
||||||||||||||
| uses: actions/checkout@v6 | ||||||||||||||
| - name: Set up Flutter | ||||||||||||||
| uses: subosito/flutter-action@v2 | ||||||||||||||
| with: | ||||||||||||||
|
|
@@ -36,7 +36,7 @@ jobs: | |||||||||||||
| needs: analyze | ||||||||||||||
| steps: | ||||||||||||||
| - name: Checkout repository | ||||||||||||||
| uses: actions/checkout@v4 | ||||||||||||||
| uses: actions/checkout@v6 | ||||||||||||||
|
|
||||||||||||||
| - name: Set up Flutter | ||||||||||||||
| uses: subosito/flutter-action@v2 | ||||||||||||||
|
|
@@ -53,7 +53,7 @@ jobs: | |||||||||||||
| needs: test | ||||||||||||||
| steps: | ||||||||||||||
| - name: Checkout repository | ||||||||||||||
| uses: actions/checkout@v4 | ||||||||||||||
| uses: actions/checkout@v6 | ||||||||||||||
|
|
||||||||||||||
| - name: Set up Flutter | ||||||||||||||
| uses: subosito/flutter-action@v2 | ||||||||||||||
|
|
@@ -93,7 +93,7 @@ jobs: | |||||||||||||
| if: github.event_name == 'push' && github.ref == 'refs/heads/main' | ||||||||||||||
| steps: | ||||||||||||||
| - name: Checkout repository | ||||||||||||||
| uses: actions/checkout@v4 | ||||||||||||||
| uses: actions/checkout@v6 | ||||||||||||||
| - name: Download app APK | ||||||||||||||
| uses: actions/download-artifact@v4 | ||||||||||||||
| with: | ||||||||||||||
|
|
@@ -118,7 +118,7 @@ jobs: | |||||||||||||
| # if: github.ref == 'refs/heads/main' | ||||||||||||||
| # steps: | ||||||||||||||
| # - name: Checkout | ||||||||||||||
| # uses: actions/checkout@v4 | ||||||||||||||
| # uses: actions/checkout@v6 | ||||||||||||||
|
|
||||||||||||||
| # - name: Set up Ruby | ||||||||||||||
| # uses: ruby/setup-ruby@v1 | ||||||||||||||
|
|
||||||||||||||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -10,7 +10,7 @@ jobs: | |||||
| validate: | ||||||
| runs-on: ubuntu-latest | ||||||
| steps: | ||||||
| - uses: actions/checkout@v3 | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Upgrading
Suggested change
|
||||||
| - uses: actions/checkout@v6 | ||||||
| with: | ||||||
| fetch-depth: 0 | ||||||
|
|
||||||
|
|
||||||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -22,7 +22,7 @@ jobs: | |||||
| # timeout-minutes: 20 | ||||||
| # steps: | ||||||
| # - name: Checkout | ||||||
| # uses: actions/checkout@v4 | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Updating
Suggested change
|
||||||
| # uses: actions/checkout@v6 | ||||||
|
|
||||||
| # - name: Verify macOS version | ||||||
| # run: | | ||||||
|
|
@@ -86,7 +86,7 @@ jobs: | |||||
| timeout-minutes: 20 | ||||||
| steps: | ||||||
| - name: Checkout | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This update to
Suggested change
|
||||||
| uses: actions/checkout@v4 | ||||||
| uses: actions/checkout@v6 | ||||||
|
|
||||||
| - name: Set up Ruby | ||||||
| uses: ruby/setup-ruby@v1 | ||||||
|
|
||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Keeping GitHub Actions up-to-date, such as
actions/checkouttov6, is crucial for security, stability, and access to the latest features. This ensures that the repository checkout process is robust and secure.