This repository has been archived by the owner on Nov 1, 2024. It is now read-only.
Fix code scanning alert #3: Database query built from user-controlled sources #29
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Example Using GitHub Secrets | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
secrets: | |
runs-on: ubuntu-latest | |
name: Demo Using Secrets | |
steps: | |
- name: Echo Out The Secret | |
env: | |
bsides_secret: ${{ secrets.LV_EXAMPLE_SECRET }} | |
run: echo "$bsides_secret" |