-
Notifications
You must be signed in to change notification settings - Fork 33
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
Merges latest changes from main to gold/2021 #1445
Changes from 19 commits
3f31e8c
1336f76
ff5b714
c793313
4708ac7
1fd7893
e625c9d
f1bd0eb
0972830
289db47
9ef3a7a
3aef476
a05044e
d3f7793
a60d032
06af70b
eb0acbb
41b5d25
675cb79
ae07cb6
0287101
71cc99f
72a3167
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 |
---|---|---|
|
@@ -51,7 +51,7 @@ | |
run: make html | ||
|
||
- name: GitHub Pages [main] | ||
uses: peaceiris/actions-gh-pages@v3.9.3 | ||
uses: peaceiris/actions-gh-pages@v4.0.0 | ||
if: ${{ github.ref == 'refs/heads/main' }} | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
|
@@ -64,7 +64,7 @@ | |
user_email: 'github-actions[bot]@users.noreply.github.com' | ||
|
||
- name: GitHub Pages [PR] | ||
uses: peaceiris/actions-gh-pages@v3.9.3 | ||
uses: peaceiris/actions-gh-pages@v4.0.0 | ||
Check warning Code scanning / Scorecard Pinned-Dependencies Medium
score is 0: third-party GitHubAction not pinned by hash
Remediation tip: update your workflow using https://app.stepsecurity.io Click Remediation section below for further remediation help |
||
if: ${{ github.event.pull_request && github.event.action != 'closed' }} | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
|
@@ -88,7 +88,7 @@ | |
|
||
- name: Publish release | ||
if: startsWith(github.ref, 'refs/heads/release') | ||
uses: peaceiris/actions-gh-pages@v3.9.3 | ||
uses: peaceiris/actions-gh-pages@v4.0.0 | ||
Check warning Code scanning / Scorecard Pinned-Dependencies Medium
score is 0: third-party GitHubAction not pinned by hash
Remediation tip: update your workflow using https://app.stepsecurity.io Click Remediation section below for further remediation help |
||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
destination_dir : next_release | ||
|
@@ -104,7 +104,7 @@ | |
|
||
- name: Publish tag | ||
if: startsWith(github.ref, 'refs/tags/') | ||
uses: peaceiris/actions-gh-pages@v3.9.3 | ||
uses: peaceiris/actions-gh-pages@v4.0.0 | ||
Check warning Code scanning / Scorecard Pinned-Dependencies Medium
score is 0: third-party GitHubAction not pinned by hash
Remediation tip: update your workflow using https://app.stepsecurity.io Click Remediation section below for further remediation help |
||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
destination_dir : ${{ steps.capture_tag.outputs.tag_number }} | ||
|
Check warning
Code scanning / Scorecard
Pinned-Dependencies Medium