Skip to content

Commit 2d6645f

Browse files
authored
refactor:[M3-9877][SECURITY] - Fix excessive secrets exposure warning in e2e GHA workflow (linode#12664)
* Add log * Add workflow_dispatch * Use env * Added changeset: Fix Excessive Secrets Exposure vulnerability in E2E GitHub Action
1 parent 2dffce0 commit 2d6645f

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/e2e_schedule_and_push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
echo "REACT_APP_API_ROOT=${{ secrets.REACT_APP_API_ROOT }}" >> ./packages/manager/.env
5454
echo "REACT_APP_APP_ROOT=${{ secrets.REACT_APP_APP_ROOT }}" >> ./packages/manager/.env
5555
echo "REACT_APP_DISABLE_NEW_RELIC=1" >> ./packages/manager/.env
56-
echo "MANAGER_OAUTH=${{ secrets[matrix.user.name] }}" >> ./packages/manager/.env
56+
echo "MANAGER_OAUTH=${{ env[matrix.user.name] }}" >> ./packages/manager/.env
5757
echo "CY_TEST_SPLIT_RUN_INDEX=${{ matrix.user.index }}" >> ./packages/manager/.env
5858
- run: pnpm install --frozen-lockfile
5959
- run: pnpm run --filter @linode/validation build
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@linode/manager": Tech Stories
3+
---
4+
5+
Fix Excessive Secrets Exposure vulnerability in E2E GitHub Action ([#12664](https://github.com/linode/manager/pull/12664))

0 commit comments

Comments
 (0)