diff --git a/.github/workflows/readme-updater.yml b/.github/workflows/readme-updater.yml index d03e23347..b43e2f614 100644 --- a/.github/workflows/readme-updater.yml +++ b/.github/workflows/readme-updater.yml @@ -9,7 +9,7 @@ on: jobs: update-readme: - if: ${{ vars.RUN_UPDATERS }} == '1' + if: vars.RUN_UPDATERS == 1 runs-on: ubuntu-latest permissions: contents: write diff --git a/.github/workflows/remote-wordlists-updater.yml b/.github/workflows/remote-wordlists-updater.yml index 81e97802f..56b614fc1 100644 --- a/.github/workflows/remote-wordlists-updater.yml +++ b/.github/workflows/remote-wordlists-updater.yml @@ -8,7 +8,7 @@ on: jobs: update-files: - if: ${{ vars.RUN_UPDATERS }} == '1' + if: vars.RUN_UPDATERS == 1 permissions: contents: write runs-on: ubuntu-latest diff --git a/.github/workflows/wordlist-updater_awesome-list-of-secrets-in-environment-variables.yml b/.github/workflows/wordlist-updater_awesome-list-of-secrets-in-environment-variables.yml index 8df529f66..8bf87d790 100644 --- a/.github/workflows/wordlist-updater_awesome-list-of-secrets-in-environment-variables.yml +++ b/.github/workflows/wordlist-updater_awesome-list-of-secrets-in-environment-variables.yml @@ -6,7 +6,7 @@ on: jobs: update_awesome-environment-variable-names: - if: ${{ vars.RUN_UPDATERS }} == '1' + if: vars.RUN_UPDATERS == 1 runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/wordlist-updater_fuzzing_etc_files.yml b/.github/workflows/wordlist-updater_fuzzing_etc_files.yml index 7348abd5c..054f4b5d5 100644 --- a/.github/workflows/wordlist-updater_fuzzing_etc_files.yml +++ b/.github/workflows/wordlist-updater_fuzzing_etc_files.yml @@ -10,7 +10,7 @@ on: jobs: updatejob: - if: ${{ vars.RUN_UPDATERS }} == '1' + if: vars.RUN_UPDATERS == 1 # The type of runner that the job will run on runs-on: ubuntu-latest # Steps represent a sequence of tasks that will be executed as part of the job