Skip to content

Commit bef295e

Browse files
committed
build: pin used actions and update tokens
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed --- --- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: na - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: na - task: run_c_benchmarks status: na - task: run_cpp_benchmarks status: na - task: run_fortran_benchmarks status: na - task: run_javascript_benchmarks status: na - task: run_julia_benchmarks status: na - task: run_python_benchmarks status: na - task: run_r_benchmarks status: na - task: run_javascript_tests status: na ---
1 parent e99bfd9 commit bef295e

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/generate_pr_commit_message.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,14 @@ jobs:
5353

5454
# Define environment variables:
5555
env:
56-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5756
PR_NUMBER: ${{ github.event.pull_request.number }}
5857

5958
# Define the sequence of job steps...
6059
steps:
6160
# Checkout repository:
6261
- name: 'Checkout repository'
63-
uses: actions/checkout@v4
62+
# Pin action to full length commit SHA
63+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
6464
with:
6565
# Fetch all commits to ensure we have the full commit history:
6666
fetch-depth: 0
@@ -87,9 +87,10 @@ jobs:
8787
8888
# Post commit message as PR comment:
8989
- name: 'Post commit message as PR comment'
90-
uses: peter-evans/create-or-update-comment@v4
90+
# Pin action to full length commit SHA
91+
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4.0.0
9192
with:
92-
token: ${{ secrets.CHATBOT_GITHUB_TOKEN }}
93+
token: ${{ secrets.STDLIB_BOT_FGPAT_REPO_WRITE }}
9394
issue-number: ${{ github.event.pull_request.number }}
9495
body: |
9596
### PR Commit Message

0 commit comments

Comments
 (0)