-
Notifications
You must be signed in to change notification settings - Fork 15
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
chore: upgrade checkout to v4 #113
Conversation
.github/workflows/pr.yml
Outdated
@@ -15,7 +15,7 @@ jobs: | |||
name: Secret scan | |||
runs-on: ubuntu-latest | |||
steps: | |||
- uses: actions/checkout@v3 | |||
- uses: actions/checkout@4.2.2 |
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.
Need to provide v
:
- uses: actions/checkout@4.2.2 | |
- uses: actions/checkout@v4.2.2 |
And same for others.
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.
.github/workflows/pr.yml
Outdated
@@ -98,7 +98,7 @@ jobs: | |||
if: ${{ always() }} | |||
runs-on: ubuntu-latest | |||
steps: | |||
- uses: actions/checkout@v3 | |||
- uses: actions/checkout@4.2.2 | |||
|
|||
- name: Check jobs for errors | |||
uses: actions/github-script@v6 |
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.
Might as well fix this while we're here:
uses: actions/github-script@v6 | |
uses: actions/github-script@v6.4.1 |
Co-authored-by: Matt Calthrop <matt@calthrop.com>
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.
Thanks @juditgreskovits!
Problem
checkout is on v3
Solution
upgrade to v4
Useful documentation