Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/imsdk-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ inputs.ref }}
allow-unsafe-pr-checkout: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/imsdk_compilation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Resolve SDK URL from latest wrynose nightly
id: urls
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/imsdk_compilation_pr.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: IMSDK_UAT_Compilation_PR
run-name: "${{ github.event.workflow_run.display_title }}"

on:

Check failure on line 4 in .github/workflows/imsdk_compilation_pr.yml

View workflow job for this annotation

GitHub Actions / Scan workflows for security issues

dangerous-triggers

imsdk_compilation_pr.yml:4: use of fundamentally insecure workflow trigger: workflow_run is almost always used insecurely
workflow_run:
workflows: ["IMSDK_UAT_Compilation"]
types: [completed]
Expand Down Expand Up @@ -45,7 +45,7 @@
await github.rest.repos.createCommitStatus({
owner: context.repo.owner,
repo: context.repo.repo,
sha: "${{ steps.pr.outputs.sha }}",

Check failure on line 48 in .github/workflows/imsdk_compilation_pr.yml

View workflow job for this annotation

GitHub Actions / Scan workflows for security issues

template-injection

imsdk_compilation_pr.yml:48: code injection via template expansion: may expand into attacker-controllable code
state: "pending",
context: "IMSDK_UAT_Compilation_PR",
description: "Build running",
Expand All @@ -53,7 +53,7 @@
});

- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ steps.pr.outputs.sha }}
allow-unsafe-pr-checkout: true
Expand Down Expand Up @@ -87,7 +87,7 @@
await github.rest.repos.createCommitStatus({
owner: context.repo.owner,
repo: context.repo.repo,
sha: "${{ needs.init.outputs.pr-sha }}",

Check failure on line 90 in .github/workflows/imsdk_compilation_pr.yml

View workflow job for this annotation

GitHub Actions / Scan workflows for security issues

template-injection

imsdk_compilation_pr.yml:90: code injection via template expansion: may expand into attacker-controllable code
state: "${{ needs.build.result == 'success' && 'success' || 'failure' }}",
context: "IMSDK_UAT_Compilation_PR",
description: "${{ needs.build.result == 'success' && 'Build succeeded' || 'Build failed' }}",
Expand Down
Loading