-
Notifications
You must be signed in to change notification settings - Fork 30
Update actions version in all GHA workflows #273
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
Conversation
.github/workflows/deploy-docs.yml
Outdated
| steps: | ||
| - name: checkout | ||
| uses: actions/checkout@v2 | ||
| uses: actions/checkout@v3.1.0 |
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.
We can use all "3.*" instead of a point release.
| uses: actions/checkout@v3.1.0 | |
| uses: actions/checkout@v3 |
.github/workflows/deploy-docs.yml
Outdated
| - name: Deploy | ||
| uses: peaceiris/actions-gh-pages@v3.6.1 | ||
| uses: peaceiris/actions-gh-pages@v3.8.0 |
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.
| uses: peaceiris/actions-gh-pages@v3.8.0 | |
| uses: peaceiris/actions-gh-pages@v3 |
.github/workflows/publish.yml
Outdated
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v2 | ||
| - uses: actions/checkout@v3.1.0 |
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.
| - uses: actions/checkout@v3.1.0 | |
| - uses: actions/checkout@v3.1.0 |
| - uses: actions/checkout@v3.1.0 | |
| - uses: actions/checkout@v3 |
.github/workflows/publish.yml
Outdated
|
|
||
| - name: Set up Python | ||
| uses: actions/setup-python@v1 | ||
| uses: actions/setup-python@v4.3.0 |
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.
| uses: actions/setup-python@v4.3.0 | |
| uses: actions/setup-python@v4 |
|
The error here is unrelated to this PR and we can investigate it later. Merging this for now. |
Change all actions version to the newest tagged ones, including which were pointing to the main branch.