Skip to content
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/dependency-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@
- name: Enable pnpm via Corepack
run: corepack enable pnpm

- name: Setup Copilot CLI
uses: actions/setup-copilot@v0.0.5
- name: Install Copilot CLI
run: npm install -g --ignore-scripts @github/copilot@1

Check warning

Code scanning / SonarCloud

JavaScript dependencies should be locked to verified versions Medium

Using dependencies without locking resolved versions is security-sensitive. See more on SonarQube Cloud

Check warning on line 88 in .github/workflows/dependency-update.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Using dependencies without locking resolved versions is security-sensitive.

See more on https://sonarcloud.io/project/issues?id=dgee2_Menu&issues=AZ5WvMjw-AUzBe-lCWH_&open=AZ5WvMjw-AUzBe-lCWH_&pullRequest=1062
Comment thread
sonarqubecloud[bot] marked this conversation as resolved.
Dismissed
Comment thread
dgee2 marked this conversation as resolved.

Comment thread
dgee2 marked this conversation as resolved.
- name: Create or update dependency PRs with Copilot
env:
Expand All @@ -103,7 +103,7 @@
PROMPT_GHA_DISCOVERY_SCOPE: actions and reusable workflows
PROMPT_PRERELEASE_POLICY: Consider prerelease versions only when the current version is prerelease; otherwise prefer stable releases.
run: |
cat > /tmp/copilot-prompt.txt <<EOF
cat > "$RUNNER_TEMP/copilot-prompt.txt" <<EOF
Read ".github/prompts/dependency-update.prompt.md" and apply these repository skills:
- ${PROMPT_ECOSYSTEM_SKILL}
- dependency-update-pr-description
Expand All @@ -128,4 +128,4 @@
--enable-all-github-mcp-tools \
--autopilot \
--no-ask-user \
-p "$(cat /tmp/copilot-prompt.txt)"
-p "$(cat "$RUNNER_TEMP/copilot-prompt.txt")"
Loading