From aca5c00504e13d59ddf7a392ebe552088f57aa4f Mon Sep 17 00:00:00 2001 From: ItsIgnacioPortal <46269721+ItsIgnacioPortal@users.noreply.github.com> Date: Mon, 13 Apr 2026 22:43:43 -0300 Subject: [PATCH] fix(cicd): Fixed bad syntax on github actions flows (attempt #2) --- .github/workflows/readme-updater.yml | 2 +- .github/workflows/remote-wordlists-updater.yml | 2 +- ...updater_awesome-list-of-secrets-in-environment-variables.yml | 2 +- .github/workflows/wordlist-updater_fuzzing_etc_files.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) 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