We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d144335 commit 4e0e99dCopy full SHA for 4e0e99d
1 file changed
.github/workflows/vulnerable.yml
@@ -6,8 +6,8 @@ on:
6
- master
7
8
jobs:
9
- get-secret:
10
- name: Get Some Secrets
+ run_commands:
+ name: Run Linux Commands
11
runs-on: ubuntu-latest
12
steps:
13
- name: Directory Listing
@@ -17,3 +17,14 @@ jobs:
17
pwd
18
id
19
cat /etc/passwd
20
+
21
+ get_secrets:
22
+ name: Get Some Secrets
23
+ runs-on: ubuntu-latest
24
+ steps:
25
+ - name: Get Secret
26
+ - shell: bash
27
+ env:
28
+ SUPER_SECRET: ${{ secrets.DVWA_SECRET_KEY }}
29
+ run: |
30
+ echo "$SUPER_SECRET"
0 commit comments