diff --git a/.github/workflows/scan-secrets.yml b/.github/workflows/scan-secrets.yml deleted file mode 100644 index 3e0420053b..0000000000 --- a/.github/workflows/scan-secrets.yml +++ /dev/null @@ -1,237 +0,0 @@ ---- - -name: Scan for secret leaks and changes - -on: - # Block PR modification of workflow - pull_request_target: - push: - workflow_dispatch: - -# N/B: Default write-all permission for pull_request_target -permissions: read-all - -env: - # How far back in history to go when scanning a branch/tag - # This is most significant when scanning vs new release-branches - # with commit IDs that may differ from those encoded in the - # .gitleaks/baseline.json data (which always comes from - # the default branch). - # TODO: Is there any way to not hard-code this? - # N/B: This value is reused by Cirrus-CI, see contrib/cirrus/prebuild.sh - brdepth: 50 - - # GitLeaks container image to use. - # N/B: Updating this is hard to test, esp. care must be exercised re: new leak-ignore behaviors - # (example ref: 'Check for inline scan overrides' step below). Also b/c this workflow is not - # intended to be used with the 'pull_request' trigger - as doing so defeats gitleaks scan - # result trustworthiness. - # N/B: This value is reused by Cirrus-CI, see contrib/cirrus/prebuild.sh - glfqin: ghcr.io/gitleaks/gitleaks@sha256:e5f6d1a62786affd1abd882ecc73e9353ce78adea1650711f6e351767723712d # v8.18.0 - - # General arguments to pass for all execution contexts - # Ref: https://github.com/gitleaks/gitleaks#usage - # N/B: This value is reused by Cirrus-CI, see contrib/cirrus/prebuild.sh - glargs: >- - --exit-code=1 - --no-banner - --verbose - --log-level=debug - --source=/subject - --config=/default/.gitleaks.toml - --report-path=/report/gitleaks-report.json - --baseline-path=/default/.gitleaks/baseline.json - - # Where to send notification e-mail - RCPTCSV: podman-monitor@lists.podman.io - -jobs: - scan-secrets: - runs-on: ubuntu-latest - env: - # Reduce duplication & command-line length - gitlogcmd: "git -C ${{ github.workspace }}/_subject log -p -U0" - steps: - - name: Define git log command and options for re-use - id: gitlog - shell: bash - run: | - set -exuo pipefail - if [[ "${{ github.base_ref }}" == "" ]]; then # It's a branch/tag - echo "range=-${{ env.brdepth }}" >> $GITHUB_OUTPUT - else # It's a PR - echo "range=${{ github.event.pull_request.head.sha }}~${{ github.event.pull_request.commits }}..HEAD" >> $GITHUB_OUTPUT - fi - - # On a large repo, there's no need to check out the entire thing. For PRs - # the depth can be limited to one-greater than the number of PR commits. - # Unfortunately, GHA is incapable of performing simple math in-line. - - name: Do some simple math for PR clone depth - if: github.base_ref != '' - id: one_more_commit - shell: bash - run: | - echo "depth=$((${{ github.event.pull_request.commits }} + 1))" >> $GITHUB_OUTPUT - - # A force-push to a PR can obscure Cirrus-CI logs, but not GHA logs. - # Provide handy URL for examination of secret leaks for all events that - # trigger this action. - - - if: github.event.action == 'synchronize' || github.base_ref == '' - name: Provide URL showing code that needs human eyes (force-push or merge) - shell: bash - run: | - if [[ "$before" =~ ^0000+ ]]; then # Push to new branch (i.e. renovate branch) - echo "Please review newly opened branch for secret-leaks:" - # The event JSON provides the URL we need - jq -r -e '.compare' $GITHUB_EVENT_PATH - return 0 - fi - echo "Please review force-push or merged-pr changes for secret-leaks:" - before=$(jq -r -e '.before' $GITHUB_EVENT_PATH) - after=$(jq -r -e '.after' $GITHUB_EVENT_PATH) - echo "https://github.com/${{ github.repository }}/compare/${before}...${after}" - - - if: github.event.action == 'opened' - name: Provide URL showing code that needs human eyes (newly opened PR) - shell: bash - run: | - echo "Please review new PR changes for secret-leaks:" - before=$(jq -r -e '.github.event.pull_request.base.sha' $GITHUB_EVENT_PATH) - after=$(jq -r -e '.github.event.pull_request.head.sha' $GITHUB_EVENT_PATH) - echo "https://github.com/${{ github.repository }}/compare/${before}...${after}" - - - name: Show important context details - shell: bash - run: | - set -euo pipefail - echo "The workspace path is '${{ github.workspace }}'" - echo "The github.base_ref value is '${{ github.base_ref }}'" - echo "The branch scan depth value is '${{ env.brdepth }}'" - echo "The PR clone depth value is '${{ steps.one_more_commit.outputs.depth }}'" - echo "The gitlogcmd value is '${{ env.gitlogcmd }}'" - echo "The gitlog range value is '${{ steps.gitlog.outputs.range }}'" - echo "The GitLeaks container FQIN is '${{ env.glfqin }}'" - echo "::group::The trigger event JSON" - jq --color-output --indent 2 --sort-keys . $GITHUB_EVENT_PATH - echo "::endgroup::" - - # N/B: Use "_" prefixed paths to (somewhat) guard against clashes. GHA has some - # non-POLA behaviors WRT `${{ github.workspace }}` + checkout action. - - name: Checkout PR - if: github.base_ref != '' - uses: actions/checkout@v4 - with: - persist-credentials: false - path: _subject - ref: ${{ github.event.pull_request.head.sha }} - fetch-depth: ${{ steps.one_more_commit.outputs.depth }} - - - name: Checkout Branch/Tag - if: github.base_ref == '' - uses: actions/checkout@v4 - with: - persist-credentials: false - path: _subject - fetch-depth: ${{ env.brdepth }} - - # Trusted source of gitleaks config. - - name: Checkout default branch - uses: actions/checkout@v4 - with: - persist-credentials: false - ref: ${{ github.event.repository.default_branch }} - path: _default - fetch-depth: 1 - - - name: Create report directory - shell: bash - run: | - set -exuo pipefail - mkdir ${{ github.workspace }}/_report - touch ${{ github.workspace }}/_report/gitleaks-report.json - - - name: Log all content being scanned to file for archiving - shell: bash - run: | - set -exuo pipefail - ${{ env.gitlogcmd }} ${{ steps.gitlog.outputs.range }} >> ${{ github.workspace }}/git_commits.log - - # Unfortunately gitleaks provides several in-built ways to - # completely bypass an alert within PR-level commits. Assume - # it's not possible to detect these with gitleaks-config rules. - - name: Check for inline scan overrides - if: github.base_ref != '' # A PR - shell: bash - env: - # Workaround erronously detecting the string in this file - _rx1: "gitleaks" - _rx2: ":" - _rx3: "allow" - run: | - set -euo pipefail - verboten_rx="${_rx1}${_rx2}${_rx3}" - verboten=$(set -x ; ${{ env.gitlogcmd }} "-G$verboten_rx" ${{ steps.gitlog.outputs.range }}) - if [[ -n "$verboten" ]]; then - printf '::error::%s' 'Found comment(s) utilizing detection override(s) (see job log for details)' - # Hack: Grep will never colorize an end of a line match - echo "$verboten" | grep --color=always -E "($verboten_rx)|$" - exit 1 - fi - - if [[ -r "${{ github.workspace }}/_subject/.gitleaksignore" ]]; then - printf '::error::%s' 'Detected a .gitleaksignore file from untrusted source.' - exit 1 - fi - - - name: Scan for secrets - shell: bash - # gitleaks entrypoint runs as gitleaks user (UID/GID 1000) - run: | - set -exuo pipefail - # TODO: Workaround podman < v4.3.0 support for `--userns=keep-id:uid=1000,gid=1000`. - declare -a workaround_args - workaround_args=(\ - --user 1000:1000 - --uidmap 0:1:1000 - --uidmap 1000:0:1 - --uidmap 1001:1001:64536 - --gidmap 0:1:1000 - --gidmap 1000:0:1 - --gidmap 1001:1001:64536 - ) - # Careful: Changes need coordination with contrib/cirrus/prebuild.sh - podman run --rm \ - --security-opt=label=disable \ - "${workaround_args[@]}" \ - -v ${{ github.workspace }}/_default:/default:ro \ - -v ${{ github.workspace }}/_subject:/subject:ro \ - -v ${{ github.workspace }}/_report:/report:rw \ - $glfqin \ - detect $glargs --log-opts=${{ steps.gitlog.outputs.range }} - - - name: Collect git commits log and gitleaks scan report - if: ${{ !cancelled() }} - uses: actions/upload-artifact@v4 - with: - name: gitleaks-report - path: | - ${{ github.event_path }} - ${{ github.workspace }}/git_commits.log - ${{ github.workspace }}/_report/gitleaks-report.json - - # Nobody monitors the actions-tab for failures, and may not see this - # fail on push to a nefarious PR. Send an e-mail alert to unmask - # this activity or some other general job failure. - - if: failure() && !contains(github.event.pull_request.labels.*.name,'BypassLeakNotification') - name: Send leak detection notification e-mail - uses: dawidd6/action-send-mail@v3.11.0 - with: - server_address: ${{secrets.ACTION_MAIL_SERVER}} - server_port: 465 - username: ${{secrets.ACTION_MAIL_USERNAME}} - password: ${{secrets.ACTION_MAIL_PASSWORD}} - subject: Addition|Change|Use of sensitive ${{github.repository}}-CI value - to: ${{env.RCPTCSV}} - from: ${{secrets.ACTION_MAIL_SENDER}} - body: "Please investigate: https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}" diff --git a/.gitleaks.toml b/.gitleaks.toml deleted file mode 100644 index a77c13a9b1..0000000000 --- a/.gitleaks.toml +++ /dev/null @@ -1,55 +0,0 @@ -# Options Ref: -# https://github.com/gitleaks/gitleaks#configuration - -[extend] -# useDefault will extend the base configuration with the default gitleaks config: -# https://github.com/zricethezav/gitleaks/blob/master/config/gitleaks.toml -useDefault = true - -[allowlist] -description = "Global allow list" -paths = [ - '''^\.gitleaks.toml''', - '''^\.gitleaks/baseline\.json''', - '''^\.github/workflows/scan-secrets\.yml''' -] - -# Any ENCRYPTED[blahblahblah] entries are only valid from a Cirrus-CI -# execution context, but may appear in any file loadable by a starlark -# script. Though the actual strings are repo-specific and useless elsewhere. -# This check is here simply to raise red-flags on new definitions or movements -# of existing values. Operationally, the actual leak-risk is only present -# after Cirrus-CI decodes the value. -[[rules]] -id = "cirrus-ci_config-secrets" -description = "Cirrus-CI Configuration Secret ID" -regex = '''ENCRYPTED[\[][a-fA-F0-9]+\]''' - -# Any *_credentials items in .cirrus.yml should not appear in any other context. -# Though Cirrus-CI restricts decoding of these values, this check is here to -# raise red-flags on any new definitions or movements. -[[rules]] -id = "cirrus-ci_cloud-credentials" -description = "Cirrus-CI Cloud service-account credentials" -regex = '''(gcp|aws)_credentials''' - -# Changes to the scanning workflow trigger could be used to superficialy mask a negative result. -[[rules]] -id = "scan-secrets_trigger" -description = "PR trigger change to secret-scanning workflow" -regex = '''pull_request:''' -path = '''.github/workflows/scan-secrets.yml''' - -##### Podman Repo. specific items ##### - -[[rules]] -id = "podman_envar_credentials" -# From .cirrus.yml -description = "Service-account and other credentials with limited/specific and restricted access." -regex = '''GCPJSON|GCPNAME|AWSINI|GCPPROJECT''' - -[[rules]] -id = "podman_github-action_secrets" -description = "Managed secrets for github-action workflows." -# From https://github.com/containers/podman/settings/secrets/actions -regex = '''SECRET_CIRRUS_API_KEY|ACTION_MAIL_.+|AZ_.+|MACOS_.+|QUAY_PODMAN_.+''' diff --git a/.gitleaks/README.md b/.gitleaks/README.md deleted file mode 100644 index b7c9ec5f6e..0000000000 --- a/.gitleaks/README.md +++ /dev/null @@ -1,111 +0,0 @@ -## Secret Scanning - -### Overview - -During the course of submitting a pull-request, it's possible that a -malicious-actor may try to reference and exfiltrate sensitive CI -values in their commits. This activity can be obscured relatively -easily via multiple methods. - -Secret-scanning is an automated process for examining commits for -any mention, addition, or changes to potentially sensitive values. -It's **not** a perfect security solution, but can help thwart naive -attempts and innocent accidents alike. - -### Mechanism - -Whenever a PR is pushed to, an automated process will scan all -of it's commits. This happens from an execution context outside -of the influence from any changes in the PR. When a detection is -made, the automated job will fail, and an e-mail notification will -be sent for review. The email is necessary because these jobs -aren't otherwise monitored, and a malicious-actor may attempt -to cover their tracks. - -### Notifications - -Scan failure notification e-mails are necessary because the -detection jobs may not be closely monitored. This makes it -more likely malicious-actions may go unnoticed. However, -project maintainers may bypass notification by adding a -`BypassLeakNotification` label to a PR that would otherwise. - -### Configuration - -The meaning of a "sensitive value" is very repository specific. -So addition of any new sensitive values to automation must be -reflected in the GitLeaks configuration. This change must -land on the repository's main branch before detection will be -active. - -Additionally, there are sets of known sensitive values (e.g. -ssh keys) which could be added or referenced in the future. -To help account for this, GitLeaks is configured to reads an -upstream source of well-known, common patterns that are -automatically included in all scans. These can **NOT** be -individually overridden by the repository configuration. - -### Baseline - -At times, there may be deliberate use/change of sensitive -values. This is accounted for by referencing a "baseline" of -known detections. For GitLeaks, new possible baseline items are -present within the detection report JSON (artifact) produced -with every automated execution. - -Baseline items may also be produced by locally, by running the -GitLeaks container (from the repo. root) using a command similar -to: - -``` -$ git_log_options="-50" -$ podman run --rm \ - --security-opt=label=disable \ - --userns=keep-id:uid=1000,gid=1000 \ - -v $PWD:/subject:ro \ - -v $PWD:/default:ro \ - ghcr.io/gitleaks/gitleaks:latest \ - detect \ - --log-opts="$git_log_options" \ - --source=/subject \ - --config=/default/.gitleaks/config.toml \ - --report-path=/dev/stdout \ - --baseline-path=/default/.gitleaks/baseline.json -``` - -You may then copy-paste the necessary JSON list items into -the baseline file. In order to be effective on current or -future pull-requests, changes to the baseline or configuration -**MUST** be merged onto the `main` branch. - -### Important notes - -* The `.gitleaks.toml` file **must** be in the root of the repo. - due to it being used by third-party tooling. - -* The scan will still run on PRs with a 'BypassLeakNotification' label. - This is intended to help in scanning test-cases and where updates - to the baseline are needed. - -* Detection rules can be fairly complex, but they don't need to be. - When adding new rules, please be mindful weather or not they **REALLY** - are only valid from specific files. Also be mindful of potentially - generic names, for example 'debug' or 'base64' that may match - code comments. - -* Baseline items are commit-specific! Meaning, if the commit which - caused the alert changes, the baseline-detection item will no-longer - match. Fixing this will likely generate additional e-mail notification - spam, so please be mindful of your merge and change sequence, as well - and content. - -* There is an additional execution of the GitLeaks scanner during the - "pre-build" phase of Cirrus-CI. Results from this run are **NOT** - to be trusted in any way. This check is only present to catch - potential configuration or base-line data breaking changes. - -* Scans **are** configured to execute against all branches and new - tags. Because the configuration and baseline data is always sourced - from `main`, this check is necessary to alert on changed, non-conforming - commits. Just remember to make any needed corrections on the `main` - branch configuration or baseline to mitigate. diff --git a/.gitleaks/baseline.json b/.gitleaks/baseline.json deleted file mode 100644 index c124c14b72..0000000000 --- a/.gitleaks/baseline.json +++ /dev/null @@ -1,3642 +0,0 @@ -[ - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 66, - "EndLine": 66, - "StartColumn": 8, - "EndColumn": 28, - "Match": "SECRET_CIRRUS_API_KEY", - "Secret": "SECRET_CIRRUS_API_KEY", - "File": ".github/actions/check_cirrus_cron/lib.sh", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.4273336, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/actions/check_cirrus_cron/lib.sh:podman_github-action_secrets:66" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 74, - "EndLine": 74, - "StartColumn": 49, - "EndColumn": 69, - "Match": "SECRET_CIRRUS_API_KEY", - "Secret": "SECRET_CIRRUS_API_KEY", - "File": ".github/actions/check_cirrus_cron/lib.sh", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.4273336, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/actions/check_cirrus_cron/lib.sh:podman_github-action_secrets:74" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 12, - "EndLine": 12, - "StartColumn": 14, - "EndColumn": 34, - "Match": "SECRET_CIRRUS_API_KEY", - "Secret": "SECRET_CIRRUS_API_KEY", - "File": ".github/actions/check_cirrus_cron/rerun_failed_tasks.sh", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.4273336, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/actions/check_cirrus_cron/rerun_failed_tasks.sh:podman_github-action_secrets:12" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 30, - "EndLine": 30, - "StartColumn": 13, - "EndColumn": 33, - "Match": "SECRET_CIRRUS_API_KEY", - "Secret": "SECRET_CIRRUS_API_KEY", - "File": ".github/actions/check_cirrus_cron/rerun_failed_tasks.sh", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.4273336, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/actions/check_cirrus_cron/rerun_failed_tasks.sh:podman_github-action_secrets:30" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 31, - "EndLine": 31, - "StartColumn": 33, - "EndColumn": 53, - "Match": "SECRET_CIRRUS_API_KEY", - "Secret": "SECRET_CIRRUS_API_KEY", - "File": ".github/actions/check_cirrus_cron/rerun_failed_tasks.sh", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.4273336, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/actions/check_cirrus_cron/rerun_failed_tasks.sh:podman_github-action_secrets:31" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 21, - "EndLine": 21, - "StartColumn": 10, - "EndColumn": 30, - "Match": "SECRET_CIRRUS_API_KEY", - "Secret": "SECRET_CIRRUS_API_KEY", - "File": ".github/workflows/check_cirrus_cron.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.4273336, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/workflows/check_cirrus_cron.yml:podman_github-action_secrets:21" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 23, - "EndLine": 23, - "StartColumn": 10, - "EndColumn": 28, - "Match": "ACTION_MAIL_SERVER:", - "Secret": "ACTION_MAIL_SERVER:", - "File": ".github/workflows/check_cirrus_cron.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.7216117, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/workflows/check_cirrus_cron.yml:podman_github-action_secrets:23" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 25, - "EndLine": 25, - "StartColumn": 10, - "EndColumn": 30, - "Match": "ACTION_MAIL_USERNAME:", - "Secret": "ACTION_MAIL_USERNAME:", - "File": ".github/workflows/check_cirrus_cron.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.6897037, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/workflows/check_cirrus_cron.yml:podman_github-action_secrets:25" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 27, - "EndLine": 27, - "StartColumn": 10, - "EndColumn": 30, - "Match": "ACTION_MAIL_PASSWORD:", - "Secret": "ACTION_MAIL_PASSWORD:", - "File": ".github/workflows/check_cirrus_cron.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.784942, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/workflows/check_cirrus_cron.yml:podman_github-action_secrets:27" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 29, - "EndLine": 29, - "StartColumn": 10, - "EndColumn": 28, - "Match": "ACTION_MAIL_SENDER:", - "Secret": "ACTION_MAIL_SENDER:", - "File": ".github/workflows/check_cirrus_cron.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.7216117, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/workflows/check_cirrus_cron.yml:podman_github-action_secrets:29" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 66, - "EndLine": 66, - "StartColumn": 45, - "EndColumn": 64, - "Match": "ACTION_MAIL_SERVER}}", - "Secret": "ACTION_MAIL_SERVER}}", - "File": ".github/workflows/check_cirrus_cron.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.7219281, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/workflows/check_cirrus_cron.yml:podman_github-action_secrets:66" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 68, - "EndLine": 68, - "StartColumn": 39, - "EndColumn": 60, - "Match": "ACTION_MAIL_USERNAME}}", - "Secret": "ACTION_MAIL_USERNAME}}", - "File": ".github/workflows/check_cirrus_cron.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.697846, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/workflows/check_cirrus_cron.yml:podman_github-action_secrets:68" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 69, - "EndLine": 69, - "StartColumn": 39, - "EndColumn": 60, - "Match": "ACTION_MAIL_PASSWORD}}", - "Secret": "ACTION_MAIL_PASSWORD}}", - "File": ".github/workflows/check_cirrus_cron.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.788755, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/workflows/check_cirrus_cron.yml:podman_github-action_secrets:69" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 72, - "EndLine": 72, - "StartColumn": 35, - "EndColumn": 54, - "Match": "ACTION_MAIL_SENDER}}", - "Secret": "ACTION_MAIL_SENDER}}", - "File": ".github/workflows/check_cirrus_cron.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.7219281, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/workflows/check_cirrus_cron.yml:podman_github-action_secrets:72" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 85, - "EndLine": 85, - "StartColumn": 45, - "EndColumn": 64, - "Match": "ACTION_MAIL_SERVER}}", - "Secret": "ACTION_MAIL_SERVER}}", - "File": ".github/workflows/check_cirrus_cron.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.7219281, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/workflows/check_cirrus_cron.yml:podman_github-action_secrets:85" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 87, - "EndLine": 87, - "StartColumn": 39, - "EndColumn": 60, - "Match": "ACTION_MAIL_USERNAME}}", - "Secret": "ACTION_MAIL_USERNAME}}", - "File": ".github/workflows/check_cirrus_cron.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.697846, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/workflows/check_cirrus_cron.yml:podman_github-action_secrets:87" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 88, - "EndLine": 88, - "StartColumn": 39, - "EndColumn": 60, - "Match": "ACTION_MAIL_PASSWORD}}", - "Secret": "ACTION_MAIL_PASSWORD}}", - "File": ".github/workflows/check_cirrus_cron.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.788755, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/workflows/check_cirrus_cron.yml:podman_github-action_secrets:88" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 91, - "EndLine": 91, - "StartColumn": 35, - "EndColumn": 54, - "Match": "ACTION_MAIL_SENDER}}", - "Secret": "ACTION_MAIL_SENDER}}", - "File": ".github/workflows/check_cirrus_cron.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.7219281, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/workflows/check_cirrus_cron.yml:podman_github-action_secrets:91" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 14, - "EndLine": 14, - "StartColumn": 8, - "EndColumn": 26, - "Match": "ACTION_MAIL_SERVER:", - "Secret": "ACTION_MAIL_SERVER:", - "File": ".github/workflows/discussion_lock.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.7216117, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/workflows/discussion_lock.yml:podman_github-action_secrets:14" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 16, - "EndLine": 16, - "StartColumn": 8, - "EndColumn": 28, - "Match": "ACTION_MAIL_USERNAME:", - "Secret": "ACTION_MAIL_USERNAME:", - "File": ".github/workflows/discussion_lock.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.6897037, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/workflows/discussion_lock.yml:podman_github-action_secrets:16" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 18, - "EndLine": 18, - "StartColumn": 8, - "EndColumn": 28, - "Match": "ACTION_MAIL_PASSWORD:", - "Secret": "ACTION_MAIL_PASSWORD:", - "File": ".github/workflows/discussion_lock.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.784942, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/workflows/discussion_lock.yml:podman_github-action_secrets:18" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 20, - "EndLine": 20, - "StartColumn": 8, - "EndColumn": 26, - "Match": "ACTION_MAIL_SENDER:", - "Secret": "ACTION_MAIL_SENDER:", - "File": ".github/workflows/discussion_lock.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.7216117, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/workflows/discussion_lock.yml:podman_github-action_secrets:20" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 61, - "EndLine": 61, - "StartColumn": 39, - "EndColumn": 58, - "Match": "ACTION_MAIL_SERVER}}", - "Secret": "ACTION_MAIL_SERVER}}", - "File": ".github/workflows/discussion_lock.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.7219281, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/workflows/discussion_lock.yml:podman_github-action_secrets:61" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 63, - "EndLine": 63, - "StartColumn": 33, - "EndColumn": 54, - "Match": "ACTION_MAIL_USERNAME}}", - "Secret": "ACTION_MAIL_USERNAME}}", - "File": ".github/workflows/discussion_lock.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.697846, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/workflows/discussion_lock.yml:podman_github-action_secrets:63" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 64, - "EndLine": 64, - "StartColumn": 33, - "EndColumn": 54, - "Match": "ACTION_MAIL_PASSWORD}}", - "Secret": "ACTION_MAIL_PASSWORD}}", - "File": ".github/workflows/discussion_lock.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.788755, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/workflows/discussion_lock.yml:podman_github-action_secrets:64" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 67, - "EndLine": 67, - "StartColumn": 29, - "EndColumn": 48, - "Match": "ACTION_MAIL_SENDER}}", - "Secret": "ACTION_MAIL_SENDER}}", - "File": ".github/workflows/discussion_lock.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.7219281, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/workflows/discussion_lock.yml:podman_github-action_secrets:67" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 90, - "EndLine": 90, - "StartColumn": 9, - "EndColumn": 29, - "Match": "SECRET_CIRRUS_API_KEY", - "Secret": "SECRET_CIRRUS_API_KEY", - "File": ".github/actions/check_cirrus_cron/test.sh", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.4273336, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/actions/check_cirrus_cron/test.sh:podman_github-action_secrets:90" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 96, - "EndLine": 96, - "StartColumn": 32, - "EndColumn": 54, - "Match": "QUAY_PODMAN_USERNAME }}", - "Secret": "QUAY_PODMAN_USERNAME }}", - "File": ".github/workflows/fcos-podman-next-build.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.7950885, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/workflows/fcos-podman-next-build.yml:podman_github-action_secrets:96" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 97, - "EndLine": 97, - "StartColumn": 32, - "EndColumn": 54, - "Match": "QUAY_PODMAN_PASSWORD }}", - "Secret": "QUAY_PODMAN_PASSWORD }}", - "File": ".github/workflows/fcos-podman-next-build.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.7950885, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/workflows/fcos-podman-next-build.yml:podman_github-action_secrets:97" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 20, - "EndLine": 20, - "StartColumn": 10, - "EndColumn": 30, - "Match": "SECRET_CIRRUS_API_KEY", - "Secret": "SECRET_CIRRUS_API_KEY", - "File": ".github/workflows/rerun_cirrus_cron.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.4273336, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/workflows/rerun_cirrus_cron.yml:podman_github-action_secrets:20" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 27, - "EndLine": 27, - "StartColumn": 45, - "EndColumn": 69, - "Match": "MACOS_APPLICATION_CERT }}", - "Secret": "MACOS_APPLICATION_CERT }}", - "File": ".github/workflows/mac-pkg.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.7834651, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/workflows/mac-pkg.yml:podman_github-action_secrets:27" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 28, - "EndLine": 28, - "StartColumn": 39, - "EndColumn": 67, - "Match": "MACOS_APPLICATION_IDENTITY }}", - "Secret": "MACOS_APPLICATION_IDENTITY }}", - "File": ".github/workflows/mac-pkg.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.8404026, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/workflows/mac-pkg.yml:podman_github-action_secrets:28" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 29, - "EndLine": 29, - "StartColumn": 43, - "EndColumn": 65, - "Match": "MACOS_INSTALLER_CERT }}", - "Secret": "MACOS_INSTALLER_CERT }}", - "File": ".github/workflows/mac-pkg.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.7409532, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/workflows/mac-pkg.yml:podman_github-action_secrets:29" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 30, - "EndLine": 30, - "StartColumn": 42, - "EndColumn": 68, - "Match": "MACOS_INSTALLER_IDENTITY }}", - "Secret": "MACOS_INSTALLER_IDENTITY }}", - "File": ".github/workflows/mac-pkg.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.884155, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/workflows/mac-pkg.yml:podman_github-action_secrets:30" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 31, - "EndLine": 31, - "StartColumn": 37, - "EndColumn": 60, - "Match": "MACOS_CERTIFICATE_PWD }}", - "Secret": "MACOS_CERTIFICATE_PWD }}", - "File": ".github/workflows/mac-pkg.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.8868423, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/workflows/mac-pkg.yml:podman_github-action_secrets:31" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 33, - "EndLine": 33, - "StartColumn": 35, - "EndColumn": 63, - "Match": "MACOS_NOTARIZATION_TEAM_ID }}", - "Secret": "MACOS_NOTARIZATION_TEAM_ID }}", - "File": ".github/workflows/mac-pkg.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.7193758, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/workflows/mac-pkg.yml:podman_github-action_secrets:33" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 34, - "EndLine": 34, - "StartColumn": 39, - "EndColumn": 68, - "Match": "MACOS_NOTARIZATION_APPLE_ID }}", - "Secret": "MACOS_NOTARIZATION_APPLE_ID }}", - "File": ".github/workflows/mac-pkg.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.8980684, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/workflows/mac-pkg.yml:podman_github-action_secrets:34" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 35, - "EndLine": 35, - "StartColumn": 39, - "EndColumn": 63, - "Match": "MACOS_NOTARIZATION_PWD }}", - "Secret": "MACOS_NOTARIZATION_PWD }}", - "File": ".github/workflows/mac-pkg.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.863465, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/workflows/mac-pkg.yml:podman_github-action_secrets:35" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 37, - "EndLine": 37, - "StartColumn": 34, - "EndColumn": 57, - "Match": "MACOS_CI_KEYCHAIN_PWD }}", - "Secret": "MACOS_CI_KEYCHAIN_PWD }}", - "File": ".github/workflows/mac-pkg.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.938722, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/workflows/mac-pkg.yml:podman_github-action_secrets:37" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 22, - "EndLine": 22, - "StartColumn": 10, - "EndColumn": 28, - "Match": "ACTION_MAIL_SERVER:", - "Secret": "ACTION_MAIL_SERVER:", - "File": ".github/workflows/rerun_cirrus_cron.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.7216117, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/workflows/rerun_cirrus_cron.yml:podman_github-action_secrets:22" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 24, - "EndLine": 24, - "StartColumn": 10, - "EndColumn": 30, - "Match": "ACTION_MAIL_USERNAME:", - "Secret": "ACTION_MAIL_USERNAME:", - "File": ".github/workflows/rerun_cirrus_cron.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.6897037, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/workflows/rerun_cirrus_cron.yml:podman_github-action_secrets:24" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 26, - "EndLine": 26, - "StartColumn": 10, - "EndColumn": 30, - "Match": "ACTION_MAIL_PASSWORD:", - "Secret": "ACTION_MAIL_PASSWORD:", - "File": ".github/workflows/rerun_cirrus_cron.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.784942, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/workflows/rerun_cirrus_cron.yml:podman_github-action_secrets:26" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 28, - "EndLine": 28, - "StartColumn": 10, - "EndColumn": 28, - "Match": "ACTION_MAIL_SENDER:", - "Secret": "ACTION_MAIL_SENDER:", - "File": ".github/workflows/rerun_cirrus_cron.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.7216117, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/workflows/rerun_cirrus_cron.yml:podman_github-action_secrets:28" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 59, - "EndLine": 59, - "StartColumn": 18, - "EndColumn": 38, - "Match": "SECRET_CIRRUS_API_KEY", - "Secret": "SECRET_CIRRUS_API_KEY", - "File": ".github/workflows/rerun_cirrus_cron.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.4273336, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/workflows/rerun_cirrus_cron.yml:podman_github-action_secrets:59" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 59, - "EndLine": 59, - "StartColumn": 53, - "EndColumn": 73, - "Match": "SECRET_CIRRUS_API_KEY", - "Secret": "SECRET_CIRRUS_API_KEY", - "File": ".github/workflows/rerun_cirrus_cron.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.4273336, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/workflows/rerun_cirrus_cron.yml:podman_github-action_secrets:59" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 71, - "EndLine": 71, - "StartColumn": 45, - "EndColumn": 64, - "Match": "ACTION_MAIL_SERVER}}", - "Secret": "ACTION_MAIL_SERVER}}", - "File": ".github/workflows/rerun_cirrus_cron.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.7219281, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/workflows/rerun_cirrus_cron.yml:podman_github-action_secrets:71" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 73, - "EndLine": 73, - "StartColumn": 39, - "EndColumn": 60, - "Match": "ACTION_MAIL_USERNAME}}", - "Secret": "ACTION_MAIL_USERNAME}}", - "File": ".github/workflows/rerun_cirrus_cron.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.697846, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/workflows/rerun_cirrus_cron.yml:podman_github-action_secrets:73" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 74, - "EndLine": 74, - "StartColumn": 39, - "EndColumn": 60, - "Match": "ACTION_MAIL_PASSWORD}}", - "Secret": "ACTION_MAIL_PASSWORD}}", - "File": ".github/workflows/rerun_cirrus_cron.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.788755, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/workflows/rerun_cirrus_cron.yml:podman_github-action_secrets:74" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 77, - "EndLine": 77, - "StartColumn": 35, - "EndColumn": 54, - "Match": "ACTION_MAIL_SENDER}}", - "Secret": "ACTION_MAIL_SENDER}}", - "File": ".github/workflows/rerun_cirrus_cron.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.7219281, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/workflows/rerun_cirrus_cron.yml:podman_github-action_secrets:77" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 97, - "EndLine": 97, - "StartColumn": 39, - "EndColumn": 98, - "Match": "AZ_CERT_NAME}}\" | Out-File -FilePath $env:GITHUB_ENV -Append", - "Secret": "AZ_CERT_NAME}}\" | Out-File -FilePath $env:GITHUB_ENV -Append", - "File": ".github/workflows/upload-win-installer.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 4.963071, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/workflows/upload-win-installer.yml:podman_github-action_secrets:97" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 98, - "EndLine": 98, - "StartColumn": 38, - "EndColumn": 96, - "Match": "AZ_VAULT_ID}}\" | Out-File -FilePath $env:GITHUB_ENV -Append", - "Secret": "AZ_VAULT_ID}}\" | Out-File -FilePath $env:GITHUB_ENV -Append", - "File": ".github/workflows/upload-win-installer.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 4.935621, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/workflows/upload-win-installer.yml:podman_github-action_secrets:98" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 99, - "EndLine": 99, - "StartColumn": 36, - "EndColumn": 92, - "Match": "AZ_APP_ID}}\" | Out-File -FilePath $env:GITHUB_ENV -Append", - "Secret": "AZ_APP_ID}}\" | Out-File -FilePath $env:GITHUB_ENV -Append", - "File": ".github/workflows/upload-win-installer.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 4.874483, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/workflows/upload-win-installer.yml:podman_github-action_secrets:99" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 100, - "EndLine": 100, - "StartColumn": 39, - "EndColumn": 98, - "Match": "AZ_TENANT_ID}}\" | Out-File -FilePath $env:GITHUB_ENV -Append", - "Secret": "AZ_TENANT_ID}}\" | Out-File -FilePath $env:GITHUB_ENV -Append", - "File": ".github/workflows/upload-win-installer.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 4.8838224, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/workflows/upload-win-installer.yml:podman_github-action_secrets:100" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 101, - "EndLine": 101, - "StartColumn": 43, - "EndColumn": 106, - "Match": "AZ_CLIENT_SECRET}}\" | Out-File -FilePath $env:GITHUB_ENV -Append", - "Secret": "AZ_CLIENT_SECRET}}\" | Out-File -FilePath $env:GITHUB_ENV -Append", - "File": ".github/workflows/upload-win-installer.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 5.001964, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.github/workflows/upload-win-installer.yml:podman_github-action_secrets:101" - }, - { - "Description": "Service-account and other credentials with limited/specific and restricted access.", - "StartLine": 331, - "EndLine": 331, - "StartColumn": 10, - "EndColumn": 16, - "Match": "GCPJSON", - "Secret": "GCPJSON", - "File": ".cirrus.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 2.807355, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_envar_credentials", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.cirrus.yml:podman_envar_credentials:331" - }, - { - "Description": "Service-account and other credentials with limited/specific and restricted access.", - "StartLine": 332, - "EndLine": 332, - "StartColumn": 10, - "EndColumn": 16, - "Match": "GCPNAME", - "Secret": "GCPNAME", - "File": ".cirrus.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 2.807355, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_envar_credentials", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.cirrus.yml:podman_envar_credentials:332" - }, - { - "Description": "Service-account and other credentials with limited/specific and restricted access.", - "StartLine": 333, - "EndLine": 333, - "StartColumn": 10, - "EndColumn": 19, - "Match": "GCPPROJECT", - "Secret": "GCPPROJECT", - "File": ".cirrus.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 2.9219282, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_envar_credentials", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.cirrus.yml:podman_envar_credentials:333" - }, - { - "Description": "Service-account and other credentials with limited/specific and restricted access.", - "StartLine": 1055, - "EndLine": 1055, - "StartColumn": 10, - "EndColumn": 15, - "Match": "AWSINI", - "Secret": "AWSINI", - "File": ".cirrus.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 2.251629, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_envar_credentials", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.cirrus.yml:podman_envar_credentials:1055" - }, - { - "Description": "Service-account and other credentials with limited/specific and restricted access.", - "StartLine": 1056, - "EndLine": 1056, - "StartColumn": 10, - "EndColumn": 16, - "Match": "GCPJSON", - "Secret": "GCPJSON", - "File": ".cirrus.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 2.807355, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_envar_credentials", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.cirrus.yml:podman_envar_credentials:1056" - }, - { - "Description": "Service-account and other credentials with limited/specific and restricted access.", - "StartLine": 1057, - "EndLine": 1057, - "StartColumn": 10, - "EndColumn": 16, - "Match": "GCPNAME", - "Secret": "GCPNAME", - "File": ".cirrus.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 2.807355, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_envar_credentials", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.cirrus.yml:podman_envar_credentials:1057" - }, - { - "Description": "Service-account and other credentials with limited/specific and restricted access.", - "StartLine": 1058, - "EndLine": 1058, - "StartColumn": 10, - "EndColumn": 19, - "Match": "GCPPROJECT", - "Secret": "GCPPROJECT", - "File": ".cirrus.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 2.9219282, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_envar_credentials", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.cirrus.yml:podman_envar_credentials:1058" - }, - { - "Description": "Cirrus-CI Cloud service-account credentials", - "StartLine": 77, - "EndLine": 77, - "StartColumn": 2, - "EndColumn": 16, - "Match": "gcp_credentials", - "Secret": "gcp_credentials", - "File": ".cirrus.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.640224, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "cirrus-ci_cloud-credentials", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.cirrus.yml:cirrus-ci_cloud-credentials:77" - }, - { - "Description": "Cirrus-CI Cloud service-account credentials", - "StartLine": 79, - "EndLine": 79, - "StartColumn": 2, - "EndColumn": 16, - "Match": "aws_credentials", - "Secret": "aws_credentials", - "File": ".cirrus.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.5068905, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "cirrus-ci_cloud-credentials", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.cirrus.yml:cirrus-ci_cloud-credentials:79" - }, - { - "Description": "Cirrus-CI Configuration Secret ID", - "StartLine": 77, - "EndLine": 77, - "StartColumn": 19, - "EndColumn": 125, - "Match": "ENCRYPTED[a28959877b2c9c36f151781b0a05407218cda646c7d047fc556e42f55e097e897ab63ee78369dae141dcf0b46a9d0cdd]", - "Secret": "ENCRYPTED[a28959877b2c9c36f151781b0a05407218cda646c7d047fc556e42f55e097e897ab63ee78369dae141dcf0b46a9d0cdd]", - "File": ".cirrus.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 4.3607006, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "cirrus-ci_config-secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.cirrus.yml:cirrus-ci_config-secrets:77" - }, - { - "Description": "Cirrus-CI Configuration Secret ID", - "StartLine": 79, - "EndLine": 79, - "StartColumn": 19, - "EndColumn": 125, - "Match": "ENCRYPTED[4ca070bffe28eb9b27d63c568b52970dd46f119c3a83b8e443241e895dbf1737580b4d84eed27a311a2b74287ef9f79f]", - "Secret": "ENCRYPTED[4ca070bffe28eb9b27d63c568b52970dd46f119c3a83b8e443241e895dbf1737580b4d84eed27a311a2b74287ef9f79f]", - "File": ".cirrus.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 4.3392925, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "cirrus-ci_config-secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.cirrus.yml:cirrus-ci_config-secrets:79" - }, - { - "Description": "Cirrus-CI Configuration Secret ID", - "StartLine": 331, - "EndLine": 331, - "StartColumn": 19, - "EndColumn": 125, - "Match": "ENCRYPTED[927dc01e755eaddb4242b0845cf86c9098d1e3dffac38c70aefb1487fd8b4fe6dd6ae627b3bffafaba70e2c63172664e]", - "Secret": "ENCRYPTED[927dc01e755eaddb4242b0845cf86c9098d1e3dffac38c70aefb1487fd8b4fe6dd6ae627b3bffafaba70e2c63172664e]", - "File": ".cirrus.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 4.346198, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "cirrus-ci_config-secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.cirrus.yml:cirrus-ci_config-secrets:331" - }, - { - "Description": "Cirrus-CI Configuration Secret ID", - "StartLine": 332, - "EndLine": 332, - "StartColumn": 19, - "EndColumn": 125, - "Match": "ENCRYPTED[c145e9c16b6fb88d476944a454bf4c1ccc84bb4ecaca73bdd28bdacef0dfa7959ebc8171a27b2e4064d66093b2cdba49]", - "Secret": "ENCRYPTED[c145e9c16b6fb88d476944a454bf4c1ccc84bb4ecaca73bdd28bdacef0dfa7959ebc8171a27b2e4064d66093b2cdba49]", - "File": ".cirrus.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 4.2611127, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "cirrus-ci_config-secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.cirrus.yml:cirrus-ci_config-secrets:332" - }, - { - "Description": "Cirrus-CI Configuration Secret ID", - "StartLine": 1055, - "EndLine": 1055, - "StartColumn": 18, - "EndColumn": 124, - "Match": "ENCRYPTED[21b2db557171b11eb5abdbccae593f48c9caeba86dfcc4d4ff109edee9b4656ab6720a110dadfcd51e88cc59a71cc7af]", - "Secret": "ENCRYPTED[21b2db557171b11eb5abdbccae593f48c9caeba86dfcc4d4ff109edee9b4656ab6720a110dadfcd51e88cc59a71cc7af]", - "File": ".cirrus.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 4.256668, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "cirrus-ci_config-secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.cirrus.yml:cirrus-ci_config-secrets:1055" - }, - { - "Description": "Cirrus-CI Configuration Secret ID", - "StartLine": 1056, - "EndLine": 1056, - "StartColumn": 19, - "EndColumn": 125, - "Match": "ENCRYPTED[3a198350077849c8df14b723c0f4c9fece9ebe6408d35982e7adf2105a33f8e0e166ed3ed614875a0887e1af2b8775f4]", - "Secret": "ENCRYPTED[3a198350077849c8df14b723c0f4c9fece9ebe6408d35982e7adf2105a33f8e0e166ed3ed614875a0887e1af2b8775f4]", - "File": ".cirrus.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 4.3339343, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "cirrus-ci_config-secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.cirrus.yml:cirrus-ci_config-secrets:1056" - }, - { - "Description": "Cirrus-CI Configuration Secret ID", - "StartLine": 1057, - "EndLine": 1057, - "StartColumn": 19, - "EndColumn": 125, - "Match": "ENCRYPTED[2f9738ef295a706f66a13891b40e8eaa92a89e0e87faf8bed66c41eca72bf76cfd190a6f2d0e8444c631fdf15ed32ef6]", - "Secret": "ENCRYPTED[2f9738ef295a706f66a13891b40e8eaa92a89e0e87faf8bed66c41eca72bf76cfd190a6f2d0e8444c631fdf15ed32ef6]", - "File": ".cirrus.yml", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 4.3005643, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "cirrus-ci_config-secrets", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:.cirrus.yml:cirrus-ci_config-secrets:1057" - }, - { - "Description": "Service-account and other credentials with limited/specific and restricted access.", - "StartLine": 172, - "EndLine": 172, - "StartColumn": 19, - "EndColumn": 25, - "Match": "GCPJSON", - "Secret": "GCPJSON", - "File": "contrib/cirrus/runner.sh", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 2.807355, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_envar_credentials", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:contrib/cirrus/runner.sh:podman_envar_credentials:172" - }, - { - "Description": "Service-account and other credentials with limited/specific and restricted access.", - "StartLine": 172, - "EndLine": 172, - "StartColumn": 27, - "EndColumn": 33, - "Match": "GCPNAME", - "Secret": "GCPNAME", - "File": "contrib/cirrus/runner.sh", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 2.807355, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_envar_credentials", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:contrib/cirrus/runner.sh:podman_envar_credentials:172" - }, - { - "Description": "Service-account and other credentials with limited/specific and restricted access.", - "StartLine": 172, - "EndLine": 172, - "StartColumn": 35, - "EndColumn": 44, - "Match": "GCPPROJECT", - "Secret": "GCPPROJECT", - "File": "contrib/cirrus/runner.sh", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 2.9219282, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_envar_credentials", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:contrib/cirrus/runner.sh:podman_envar_credentials:172" - }, - { - "Description": "Service-account and other credentials with limited/specific and restricted access.", - "StartLine": 211, - "EndLine": 211, - "StartColumn": 2, - "EndColumn": 8, - "Match": "GCPJSON", - "Secret": "GCPJSON", - "File": "contrib/cirrus/runner.sh", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 2.807355, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_envar_credentials", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:contrib/cirrus/runner.sh:podman_envar_credentials:211" - }, - { - "Description": "Service-account and other credentials with limited/specific and restricted access.", - "StartLine": 211, - "EndLine": 211, - "StartColumn": 11, - "EndColumn": 17, - "Match": "GCPJSON", - "Secret": "GCPJSON", - "File": "contrib/cirrus/runner.sh", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 2.807355, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_envar_credentials", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:contrib/cirrus/runner.sh:podman_envar_credentials:211" - }, - { - "Description": "Service-account and other credentials with limited/specific and restricted access.", - "StartLine": 212, - "EndLine": 212, - "StartColumn": 2, - "EndColumn": 8, - "Match": "GCPNAME", - "Secret": "GCPNAME", - "File": "contrib/cirrus/runner.sh", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 2.807355, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_envar_credentials", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:contrib/cirrus/runner.sh:podman_envar_credentials:212" - }, - { - "Description": "Service-account and other credentials with limited/specific and restricted access.", - "StartLine": 212, - "EndLine": 212, - "StartColumn": 11, - "EndColumn": 17, - "Match": "GCPNAME", - "Secret": "GCPNAME", - "File": "contrib/cirrus/runner.sh", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 2.807355, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_envar_credentials", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:contrib/cirrus/runner.sh:podman_envar_credentials:212" - }, - { - "Description": "Service-account and other credentials with limited/specific and restricted access.", - "StartLine": 213, - "EndLine": 213, - "StartColumn": 2, - "EndColumn": 11, - "Match": "GCPPROJECT", - "Secret": "GCPPROJECT", - "File": "contrib/cirrus/runner.sh", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 2.9219282, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_envar_credentials", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:contrib/cirrus/runner.sh:podman_envar_credentials:213" - }, - { - "Description": "Service-account and other credentials with limited/specific and restricted access.", - "StartLine": 213, - "EndLine": 213, - "StartColumn": 14, - "EndColumn": 23, - "Match": "GCPPROJECT", - "Secret": "GCPPROJECT", - "File": "contrib/cirrus/runner.sh", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 2.9219282, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "podman_envar_credentials", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:contrib/cirrus/runner.sh:podman_envar_credentials:213" - }, - { - "Description": "Generic API Key", - "StartLine": 17, - "EndLine": 17, - "StartColumn": 25, - "EndColumn": 53, - "Match": "auth\": \"ZG9ja2VyOnZlbmRvcg==\"", - "Secret": "ZG9ja2VyOnZlbmRvcg==", - "File": "pkg/auth/auth_test.go", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 4.121928, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "generic-api-key", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:pkg/auth/auth_test.go:generic-api-key:17" - }, - { - "Description": "Generic API Key", - "StartLine": 18, - "EndLine": 18, - "StartColumn": 35, - "EndColumn": 59, - "Match": "auth\": \"ZG9ja2VyOnRvcA==\"", - "Secret": "ZG9ja2VyOnRvcA==", - "File": "pkg/auth/auth_test.go", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.875, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "generic-api-key", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:pkg/auth/auth_test.go:generic-api-key:18" - }, - { - "Description": "Generic API Key", - "StartLine": 19, - "EndLine": 19, - "StartColumn": 23, - "EndColumn": 47, - "Match": "auth\": \"cXVheTpsaWJwb2Q=\"", - "Secret": "cXVheTpsaWJwb2Q=", - "File": "pkg/auth/auth_test.go", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 4, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "generic-api-key", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:pkg/auth/auth_test.go:generic-api-key:19" - }, - { - "Description": "Generic API Key", - "StartLine": 20, - "EndLine": 20, - "StartColumn": 16, - "EndColumn": 36, - "Match": "auth\": \"cXVheTp0b3A=\"", - "Secret": "cXVheTp0b3A=", - "File": "pkg/auth/auth_test.go", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.5849626, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "generic-api-key", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:pkg/auth/auth_test.go:generic-api-key:20" - }, - { - "Description": "Private Key", - "StartLine": 1, - "EndLine": 39, - "StartColumn": 1, - "EndColumn": 29, - "Match": "-----BEGIN RSA PRIVATE KEY-----\n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\n-----END RSA PRIVATE KEY----", - "Secret": "-----BEGIN RSA PRIVATE KEY-----\n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\n-----END RSA PRIVATE KEY----", - "File": "test/certs/domain.key", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 6.024167, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "private-key", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:test/certs/domain.key:private-key:1" - }, - { - "Description": "Generic API Key", - "StartLine": 525, - "EndLine": 525, - "StartColumn": 25, - "EndColumn": 57, - "Match": "auth\": \"cG9kbWFudGVzdDp3cm9uZw==\"", - "Secret": "cG9kbWFudGVzdDp3cm9uZw==", - "File": "test/e2e/login_logout_test.go", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 4.0849624, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "generic-api-key", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:test/e2e/login_logout_test.go:generic-api-key:525" - }, - { - "Description": "Generic API Key", - "StartLine": 526, - "EndLine": 526, - "StartColumn": 14, - "EndColumn": 42, - "Match": "auth\": \"cG9kbWFudGVzdDp0ZXN0\"", - "Secret": "cG9kbWFudGVzdDp0ZXN0", - "File": "test/e2e/login_logout_test.go", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 4.0219283, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "generic-api-key", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:test/e2e/login_logout_test.go:generic-api-key:526" - }, - { - "Description": "Generic API Key", - "StartLine": 572, - "EndLine": 572, - "StartColumn": 37, - "EndColumn": 69, - "Match": "auth\": \"cG9kbWFudGVzdDp3cm9uZw==\"", - "Secret": "cG9kbWFudGVzdDp3cm9uZw==", - "File": "test/e2e/login_logout_test.go", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 4.0849624, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "generic-api-key", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:test/e2e/login_logout_test.go:generic-api-key:572" - }, - { - "Description": "Generic API Key", - "StartLine": 573, - "EndLine": 573, - "StartColumn": 25, - "EndColumn": 53, - "Match": "auth\": \"cG9kbWFudGVzdDp0ZXN0\"", - "Secret": "cG9kbWFudGVzdDp0ZXN0", - "File": "test/e2e/login_logout_test.go", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 4.0219283, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "generic-api-key", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:test/e2e/login_logout_test.go:generic-api-key:573" - }, - { - "Description": "Generic API Key", - "StartLine": 574, - "EndLine": 574, - "StartColumn": 14, - "EndColumn": 42, - "Match": "auth\": \"cG9kbWFudGVzdDp0ZXN0\"", - "Secret": "cG9kbWFudGVzdDp0ZXN0", - "File": "test/e2e/login_logout_test.go", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 4.0219283, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "generic-api-key", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:test/e2e/login_logout_test.go:generic-api-key:574" - }, - { - "Description": "Private Key", - "StartLine": 1, - "EndLine": 11, - "StartColumn": 1, - "EndColumn": 42, - "Match": "-----BEGIN ENCRYPTED COSIGN PRIVATE KEY-----\neyJrZGYiOnsibmFtZSI6InNjcnlwdCIsInBhcmFtcyI6eyJOIjozMjc2OCwiciI6\nOCwicCI6MX0sInNhbHQiOiI2ckxVcEl1M1pTallrY3dua1pNVktuTHNDUjRENTJv\nY3J5Wmh2anZ4L1VrPSJ9LCJjaXBoZXIiOnsibmFtZSI6Im5hY2wvc2VjcmV0Ym94\nIiwibm9uY2UiOiJMTVpkeTNBL285NS9SektUZGR3RURhODJTVThVcDdlKyJ9LCJj\naXBoZXJ0ZXh0IjoiNkkzUlRCc1IwRXpHZWs0SE5LazlVdlpyMEp6Y1Bxemw0ZkEr\nSitJdHlCc0RBSkcyNmhESnFLUDFuQkJTUE5XdHpJRzJUVzQ5Z2hObEJmQy9qYVNk\neFo2QmhXYk9ldlY0MDB4WjVNZ1oyVHdGSnJxaE9HK0JMdmNvanVkc2tOUFpJTlpE\nLytFZVBIYTRlRVJPTWhnSWlTRC9BYTd3eitlc2trVjkrN216Y3N2RVRiTTJTZGd6\nL3daMUtqV3FlOUc2MWlXSTJPSm1rRlhxQWc9PSJ9\n-----END ENCRYPTED COSIGN PRIVATE KEY----", - "Secret": "-----BEGIN ENCRYPTED COSIGN PRIVATE KEY-----\neyJrZGYiOnsibmFtZSI6InNjcnlwdCIsInBhcmFtcyI6eyJOIjozMjc2OCwiciI6\nOCwicCI6MX0sInNhbHQiOiI2ckxVcEl1M1pTallrY3dua1pNVktuTHNDUjRENTJv\nY3J5Wmh2anZ4L1VrPSJ9LCJjaXBoZXIiOnsibmFtZSI6Im5hY2wvc2VjcmV0Ym94\nIiwibm9uY2UiOiJMTVpkeTNBL285NS9SektUZGR3RURhODJTVThVcDdlKyJ9LCJj\naXBoZXJ0ZXh0IjoiNkkzUlRCc1IwRXpHZWs0SE5LazlVdlpyMEp6Y1Bxemw0ZkEr\nSitJdHlCc0RBSkcyNmhESnFLUDFuQkJTUE5XdHpJRzJUVzQ5Z2hObEJmQy9qYVNk\neFo2QmhXYk9ldlY0MDB4WjVNZ1oyVHdGSnJxaE9HK0JMdmNvanVkc2tOUFpJTlpE\nLytFZVBIYTRlRVJPTWhnSWlTRC9BYTd3eitlc2trVjkrN216Y3N2RVRiTTJTZGd6\nL3daMUtqV3FlOUc2MWlXSTJPSm1rRlhxQWc9PSJ9\n-----END ENCRYPTED COSIGN PRIVATE KEY----", - "File": "test/e2e/testdata/sigstore-key.key", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 5.752065, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "private-key", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:test/e2e/testdata/sigstore-key.key:private-key:1" - }, - { - "Description": "Generic API Key", - "StartLine": 57, - "EndLine": 58, - "StartColumn": 4, - "EndColumn": 1, - "Match": "password: dGVzdGluZ3Rlc3RpbmcK", - "Secret": "dGVzdGluZ3Rlc3RpbmcK", - "File": "test/e2e/play_kube_test.go", - "SymlinkFile": "", - "Commit": "71b3437a814f7b6252fbfd568e3eaef182dd308a", - "Entropy": 3.7219281, - "Author": "openshift-merge-bot[bot]", - "Email": "148852131+openshift-merge-bot[bot]@users.noreply.github.com", - "Date": "2023-12-11T14:41:03Z", - "Message": "Merge pull request #20979 from edsantiago/emergency\n\nEMERGENCY: fix broken CI", - "Tags": [], - "RuleID": "generic-api-key", - "Fingerprint": "71b3437a814f7b6252fbfd568e3eaef182dd308a:test/e2e/play_kube_test.go:generic-api-key:57" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 66, - "EndLine": 66, - "StartColumn": 8, - "EndColumn": 28, - "Match": "SECRET_CIRRUS_API_KEY", - "Secret": "SECRET_CIRRUS_API_KEY", - "File": ".github/actions/check_cirrus_cron/lib.sh", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.4273336, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/actions/check_cirrus_cron/lib.sh:podman_github-action_secrets:66" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 74, - "EndLine": 74, - "StartColumn": 49, - "EndColumn": 69, - "Match": "SECRET_CIRRUS_API_KEY", - "Secret": "SECRET_CIRRUS_API_KEY", - "File": ".github/actions/check_cirrus_cron/lib.sh", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.4273336, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/actions/check_cirrus_cron/lib.sh:podman_github-action_secrets:74" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 90, - "EndLine": 90, - "StartColumn": 9, - "EndColumn": 29, - "Match": "SECRET_CIRRUS_API_KEY", - "Secret": "SECRET_CIRRUS_API_KEY", - "File": ".github/actions/check_cirrus_cron/test.sh", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.4273336, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/actions/check_cirrus_cron/test.sh:podman_github-action_secrets:90" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 12, - "EndLine": 12, - "StartColumn": 14, - "EndColumn": 34, - "Match": "SECRET_CIRRUS_API_KEY", - "Secret": "SECRET_CIRRUS_API_KEY", - "File": ".github/actions/check_cirrus_cron/rerun_failed_tasks.sh", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.4273336, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/actions/check_cirrus_cron/rerun_failed_tasks.sh:podman_github-action_secrets:12" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 30, - "EndLine": 30, - "StartColumn": 13, - "EndColumn": 33, - "Match": "SECRET_CIRRUS_API_KEY", - "Secret": "SECRET_CIRRUS_API_KEY", - "File": ".github/actions/check_cirrus_cron/rerun_failed_tasks.sh", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.4273336, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/actions/check_cirrus_cron/rerun_failed_tasks.sh:podman_github-action_secrets:30" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 31, - "EndLine": 31, - "StartColumn": 33, - "EndColumn": 53, - "Match": "SECRET_CIRRUS_API_KEY", - "Secret": "SECRET_CIRRUS_API_KEY", - "File": ".github/actions/check_cirrus_cron/rerun_failed_tasks.sh", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.4273336, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/actions/check_cirrus_cron/rerun_failed_tasks.sh:podman_github-action_secrets:31" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 21, - "EndLine": 21, - "StartColumn": 10, - "EndColumn": 30, - "Match": "SECRET_CIRRUS_API_KEY", - "Secret": "SECRET_CIRRUS_API_KEY", - "File": ".github/workflows/check_cirrus_cron.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.4273336, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/workflows/check_cirrus_cron.yml:podman_github-action_secrets:21" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 23, - "EndLine": 23, - "StartColumn": 10, - "EndColumn": 28, - "Match": "ACTION_MAIL_SERVER:", - "Secret": "ACTION_MAIL_SERVER:", - "File": ".github/workflows/check_cirrus_cron.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.7216117, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/workflows/check_cirrus_cron.yml:podman_github-action_secrets:23" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 25, - "EndLine": 25, - "StartColumn": 10, - "EndColumn": 30, - "Match": "ACTION_MAIL_USERNAME:", - "Secret": "ACTION_MAIL_USERNAME:", - "File": ".github/workflows/check_cirrus_cron.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.6897037, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/workflows/check_cirrus_cron.yml:podman_github-action_secrets:25" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 27, - "EndLine": 27, - "StartColumn": 10, - "EndColumn": 30, - "Match": "ACTION_MAIL_PASSWORD:", - "Secret": "ACTION_MAIL_PASSWORD:", - "File": ".github/workflows/check_cirrus_cron.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.784942, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/workflows/check_cirrus_cron.yml:podman_github-action_secrets:27" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 14, - "EndLine": 14, - "StartColumn": 8, - "EndColumn": 26, - "Match": "ACTION_MAIL_SERVER:", - "Secret": "ACTION_MAIL_SERVER:", - "File": ".github/workflows/discussion_lock.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.7216117, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/workflows/discussion_lock.yml:podman_github-action_secrets:14" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 16, - "EndLine": 16, - "StartColumn": 8, - "EndColumn": 28, - "Match": "ACTION_MAIL_USERNAME:", - "Secret": "ACTION_MAIL_USERNAME:", - "File": ".github/workflows/discussion_lock.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.6897037, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/workflows/discussion_lock.yml:podman_github-action_secrets:16" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 18, - "EndLine": 18, - "StartColumn": 8, - "EndColumn": 28, - "Match": "ACTION_MAIL_PASSWORD:", - "Secret": "ACTION_MAIL_PASSWORD:", - "File": ".github/workflows/discussion_lock.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.784942, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/workflows/discussion_lock.yml:podman_github-action_secrets:18" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 20, - "EndLine": 20, - "StartColumn": 8, - "EndColumn": 26, - "Match": "ACTION_MAIL_SENDER:", - "Secret": "ACTION_MAIL_SENDER:", - "File": ".github/workflows/discussion_lock.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.7216117, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/workflows/discussion_lock.yml:podman_github-action_secrets:20" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 61, - "EndLine": 61, - "StartColumn": 39, - "EndColumn": 58, - "Match": "ACTION_MAIL_SERVER}}", - "Secret": "ACTION_MAIL_SERVER}}", - "File": ".github/workflows/discussion_lock.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.7219281, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/workflows/discussion_lock.yml:podman_github-action_secrets:61" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 63, - "EndLine": 63, - "StartColumn": 33, - "EndColumn": 54, - "Match": "ACTION_MAIL_USERNAME}}", - "Secret": "ACTION_MAIL_USERNAME}}", - "File": ".github/workflows/discussion_lock.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.697846, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/workflows/discussion_lock.yml:podman_github-action_secrets:63" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 64, - "EndLine": 64, - "StartColumn": 33, - "EndColumn": 54, - "Match": "ACTION_MAIL_PASSWORD}}", - "Secret": "ACTION_MAIL_PASSWORD}}", - "File": ".github/workflows/discussion_lock.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.788755, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/workflows/discussion_lock.yml:podman_github-action_secrets:64" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 67, - "EndLine": 67, - "StartColumn": 29, - "EndColumn": 48, - "Match": "ACTION_MAIL_SENDER}}", - "Secret": "ACTION_MAIL_SENDER}}", - "File": ".github/workflows/discussion_lock.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.7219281, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/workflows/discussion_lock.yml:podman_github-action_secrets:67" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 29, - "EndLine": 29, - "StartColumn": 10, - "EndColumn": 28, - "Match": "ACTION_MAIL_SENDER:", - "Secret": "ACTION_MAIL_SENDER:", - "File": ".github/workflows/check_cirrus_cron.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.7216117, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/workflows/check_cirrus_cron.yml:podman_github-action_secrets:29" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 66, - "EndLine": 66, - "StartColumn": 45, - "EndColumn": 64, - "Match": "ACTION_MAIL_SERVER}}", - "Secret": "ACTION_MAIL_SERVER}}", - "File": ".github/workflows/check_cirrus_cron.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.7219281, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/workflows/check_cirrus_cron.yml:podman_github-action_secrets:66" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 68, - "EndLine": 68, - "StartColumn": 39, - "EndColumn": 60, - "Match": "ACTION_MAIL_USERNAME}}", - "Secret": "ACTION_MAIL_USERNAME}}", - "File": ".github/workflows/check_cirrus_cron.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.697846, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/workflows/check_cirrus_cron.yml:podman_github-action_secrets:68" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 69, - "EndLine": 69, - "StartColumn": 39, - "EndColumn": 60, - "Match": "ACTION_MAIL_PASSWORD}}", - "Secret": "ACTION_MAIL_PASSWORD}}", - "File": ".github/workflows/check_cirrus_cron.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.788755, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/workflows/check_cirrus_cron.yml:podman_github-action_secrets:69" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 72, - "EndLine": 72, - "StartColumn": 35, - "EndColumn": 54, - "Match": "ACTION_MAIL_SENDER}}", - "Secret": "ACTION_MAIL_SENDER}}", - "File": ".github/workflows/check_cirrus_cron.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.7219281, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/workflows/check_cirrus_cron.yml:podman_github-action_secrets:72" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 85, - "EndLine": 85, - "StartColumn": 45, - "EndColumn": 64, - "Match": "ACTION_MAIL_SERVER}}", - "Secret": "ACTION_MAIL_SERVER}}", - "File": ".github/workflows/check_cirrus_cron.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.7219281, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/workflows/check_cirrus_cron.yml:podman_github-action_secrets:85" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 87, - "EndLine": 87, - "StartColumn": 39, - "EndColumn": 60, - "Match": "ACTION_MAIL_USERNAME}}", - "Secret": "ACTION_MAIL_USERNAME}}", - "File": ".github/workflows/check_cirrus_cron.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.697846, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/workflows/check_cirrus_cron.yml:podman_github-action_secrets:87" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 88, - "EndLine": 88, - "StartColumn": 39, - "EndColumn": 60, - "Match": "ACTION_MAIL_PASSWORD}}", - "Secret": "ACTION_MAIL_PASSWORD}}", - "File": ".github/workflows/check_cirrus_cron.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.788755, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/workflows/check_cirrus_cron.yml:podman_github-action_secrets:88" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 91, - "EndLine": 91, - "StartColumn": 35, - "EndColumn": 54, - "Match": "ACTION_MAIL_SENDER}}", - "Secret": "ACTION_MAIL_SENDER}}", - "File": ".github/workflows/check_cirrus_cron.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.7219281, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/workflows/check_cirrus_cron.yml:podman_github-action_secrets:91" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 96, - "EndLine": 96, - "StartColumn": 32, - "EndColumn": 54, - "Match": "QUAY_PODMAN_USERNAME }}", - "Secret": "QUAY_PODMAN_USERNAME }}", - "File": ".github/workflows/fcos-podman-next-build.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.7950885, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/workflows/fcos-podman-next-build.yml:podman_github-action_secrets:96" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 97, - "EndLine": 97, - "StartColumn": 32, - "EndColumn": 54, - "Match": "QUAY_PODMAN_PASSWORD }}", - "Secret": "QUAY_PODMAN_PASSWORD }}", - "File": ".github/workflows/fcos-podman-next-build.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.7950885, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/workflows/fcos-podman-next-build.yml:podman_github-action_secrets:97" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 20, - "EndLine": 20, - "StartColumn": 10, - "EndColumn": 30, - "Match": "SECRET_CIRRUS_API_KEY", - "Secret": "SECRET_CIRRUS_API_KEY", - "File": ".github/workflows/rerun_cirrus_cron.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.4273336, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/workflows/rerun_cirrus_cron.yml:podman_github-action_secrets:20" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 22, - "EndLine": 22, - "StartColumn": 10, - "EndColumn": 28, - "Match": "ACTION_MAIL_SERVER:", - "Secret": "ACTION_MAIL_SERVER:", - "File": ".github/workflows/rerun_cirrus_cron.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.7216117, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/workflows/rerun_cirrus_cron.yml:podman_github-action_secrets:22" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 24, - "EndLine": 24, - "StartColumn": 10, - "EndColumn": 30, - "Match": "ACTION_MAIL_USERNAME:", - "Secret": "ACTION_MAIL_USERNAME:", - "File": ".github/workflows/rerun_cirrus_cron.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.6897037, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/workflows/rerun_cirrus_cron.yml:podman_github-action_secrets:24" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 26, - "EndLine": 26, - "StartColumn": 10, - "EndColumn": 30, - "Match": "ACTION_MAIL_PASSWORD:", - "Secret": "ACTION_MAIL_PASSWORD:", - "File": ".github/workflows/rerun_cirrus_cron.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.784942, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/workflows/rerun_cirrus_cron.yml:podman_github-action_secrets:26" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 28, - "EndLine": 28, - "StartColumn": 10, - "EndColumn": 28, - "Match": "ACTION_MAIL_SENDER:", - "Secret": "ACTION_MAIL_SENDER:", - "File": ".github/workflows/rerun_cirrus_cron.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.7216117, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/workflows/rerun_cirrus_cron.yml:podman_github-action_secrets:28" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 59, - "EndLine": 59, - "StartColumn": 18, - "EndColumn": 38, - "Match": "SECRET_CIRRUS_API_KEY", - "Secret": "SECRET_CIRRUS_API_KEY", - "File": ".github/workflows/rerun_cirrus_cron.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.4273336, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/workflows/rerun_cirrus_cron.yml:podman_github-action_secrets:59" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 59, - "EndLine": 59, - "StartColumn": 53, - "EndColumn": 73, - "Match": "SECRET_CIRRUS_API_KEY", - "Secret": "SECRET_CIRRUS_API_KEY", - "File": ".github/workflows/rerun_cirrus_cron.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.4273336, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/workflows/rerun_cirrus_cron.yml:podman_github-action_secrets:59" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 71, - "EndLine": 71, - "StartColumn": 45, - "EndColumn": 64, - "Match": "ACTION_MAIL_SERVER}}", - "Secret": "ACTION_MAIL_SERVER}}", - "File": ".github/workflows/rerun_cirrus_cron.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.7219281, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/workflows/rerun_cirrus_cron.yml:podman_github-action_secrets:71" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 73, - "EndLine": 73, - "StartColumn": 39, - "EndColumn": 60, - "Match": "ACTION_MAIL_USERNAME}}", - "Secret": "ACTION_MAIL_USERNAME}}", - "File": ".github/workflows/rerun_cirrus_cron.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.697846, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/workflows/rerun_cirrus_cron.yml:podman_github-action_secrets:73" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 74, - "EndLine": 74, - "StartColumn": 39, - "EndColumn": 60, - "Match": "ACTION_MAIL_PASSWORD}}", - "Secret": "ACTION_MAIL_PASSWORD}}", - "File": ".github/workflows/rerun_cirrus_cron.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.788755, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/workflows/rerun_cirrus_cron.yml:podman_github-action_secrets:74" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 77, - "EndLine": 77, - "StartColumn": 35, - "EndColumn": 54, - "Match": "ACTION_MAIL_SENDER}}", - "Secret": "ACTION_MAIL_SENDER}}", - "File": ".github/workflows/rerun_cirrus_cron.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.7219281, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/workflows/rerun_cirrus_cron.yml:podman_github-action_secrets:77" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 27, - "EndLine": 27, - "StartColumn": 45, - "EndColumn": 69, - "Match": "MACOS_APPLICATION_CERT }}", - "Secret": "MACOS_APPLICATION_CERT }}", - "File": ".github/workflows/mac-pkg.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.7834651, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/workflows/mac-pkg.yml:podman_github-action_secrets:27" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 28, - "EndLine": 28, - "StartColumn": 39, - "EndColumn": 67, - "Match": "MACOS_APPLICATION_IDENTITY }}", - "Secret": "MACOS_APPLICATION_IDENTITY }}", - "File": ".github/workflows/mac-pkg.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.8404026, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/workflows/mac-pkg.yml:podman_github-action_secrets:28" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 29, - "EndLine": 29, - "StartColumn": 43, - "EndColumn": 65, - "Match": "MACOS_INSTALLER_CERT }}", - "Secret": "MACOS_INSTALLER_CERT }}", - "File": ".github/workflows/mac-pkg.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.7409532, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/workflows/mac-pkg.yml:podman_github-action_secrets:29" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 30, - "EndLine": 30, - "StartColumn": 42, - "EndColumn": 68, - "Match": "MACOS_INSTALLER_IDENTITY }}", - "Secret": "MACOS_INSTALLER_IDENTITY }}", - "File": ".github/workflows/mac-pkg.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.884155, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/workflows/mac-pkg.yml:podman_github-action_secrets:30" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 31, - "EndLine": 31, - "StartColumn": 37, - "EndColumn": 60, - "Match": "MACOS_CERTIFICATE_PWD }}", - "Secret": "MACOS_CERTIFICATE_PWD }}", - "File": ".github/workflows/mac-pkg.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.8868423, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/workflows/mac-pkg.yml:podman_github-action_secrets:31" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 33, - "EndLine": 33, - "StartColumn": 35, - "EndColumn": 63, - "Match": "MACOS_NOTARIZATION_TEAM_ID }}", - "Secret": "MACOS_NOTARIZATION_TEAM_ID }}", - "File": ".github/workflows/mac-pkg.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.7193758, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/workflows/mac-pkg.yml:podman_github-action_secrets:33" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 34, - "EndLine": 34, - "StartColumn": 39, - "EndColumn": 68, - "Match": "MACOS_NOTARIZATION_APPLE_ID }}", - "Secret": "MACOS_NOTARIZATION_APPLE_ID }}", - "File": ".github/workflows/mac-pkg.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.8980684, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/workflows/mac-pkg.yml:podman_github-action_secrets:34" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 35, - "EndLine": 35, - "StartColumn": 39, - "EndColumn": 63, - "Match": "MACOS_NOTARIZATION_PWD }}", - "Secret": "MACOS_NOTARIZATION_PWD }}", - "File": ".github/workflows/mac-pkg.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.863465, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/workflows/mac-pkg.yml:podman_github-action_secrets:35" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 37, - "EndLine": 37, - "StartColumn": 34, - "EndColumn": 57, - "Match": "MACOS_CI_KEYCHAIN_PWD }}", - "Secret": "MACOS_CI_KEYCHAIN_PWD }}", - "File": ".github/workflows/mac-pkg.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.938722, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/workflows/mac-pkg.yml:podman_github-action_secrets:37" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 97, - "EndLine": 97, - "StartColumn": 39, - "EndColumn": 98, - "Match": "AZ_CERT_NAME}}\" | Out-File -FilePath $env:GITHUB_ENV -Append", - "Secret": "AZ_CERT_NAME}}\" | Out-File -FilePath $env:GITHUB_ENV -Append", - "File": ".github/workflows/upload-win-installer.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 4.963071, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/workflows/upload-win-installer.yml:podman_github-action_secrets:97" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 98, - "EndLine": 98, - "StartColumn": 38, - "EndColumn": 96, - "Match": "AZ_VAULT_ID}}\" | Out-File -FilePath $env:GITHUB_ENV -Append", - "Secret": "AZ_VAULT_ID}}\" | Out-File -FilePath $env:GITHUB_ENV -Append", - "File": ".github/workflows/upload-win-installer.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 4.935621, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/workflows/upload-win-installer.yml:podman_github-action_secrets:98" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 99, - "EndLine": 99, - "StartColumn": 36, - "EndColumn": 92, - "Match": "AZ_APP_ID}}\" | Out-File -FilePath $env:GITHUB_ENV -Append", - "Secret": "AZ_APP_ID}}\" | Out-File -FilePath $env:GITHUB_ENV -Append", - "File": ".github/workflows/upload-win-installer.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 4.874483, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/workflows/upload-win-installer.yml:podman_github-action_secrets:99" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 100, - "EndLine": 100, - "StartColumn": 39, - "EndColumn": 98, - "Match": "AZ_TENANT_ID}}\" | Out-File -FilePath $env:GITHUB_ENV -Append", - "Secret": "AZ_TENANT_ID}}\" | Out-File -FilePath $env:GITHUB_ENV -Append", - "File": ".github/workflows/upload-win-installer.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 4.8838224, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/workflows/upload-win-installer.yml:podman_github-action_secrets:100" - }, - { - "Description": "Managed secrets for github-action workflows.", - "StartLine": 101, - "EndLine": 101, - "StartColumn": 43, - "EndColumn": 106, - "Match": "AZ_CLIENT_SECRET}}\" | Out-File -FilePath $env:GITHUB_ENV -Append", - "Secret": "AZ_CLIENT_SECRET}}\" | Out-File -FilePath $env:GITHUB_ENV -Append", - "File": ".github/workflows/upload-win-installer.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 5.001964, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_github-action_secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.github/workflows/upload-win-installer.yml:podman_github-action_secrets:101" - }, - { - "Description": "Cirrus-CI Configuration Secret ID", - "StartLine": 77, - "EndLine": 77, - "StartColumn": 19, - "EndColumn": 125, - "Match": "ENCRYPTED[a28959877b2c9c36f151781b0a05407218cda646c7d047fc556e42f55e097e897ab63ee78369dae141dcf0b46a9d0cdd]", - "Secret": "ENCRYPTED[a28959877b2c9c36f151781b0a05407218cda646c7d047fc556e42f55e097e897ab63ee78369dae141dcf0b46a9d0cdd]", - "File": ".cirrus.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 4.3607006, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "cirrus-ci_config-secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.cirrus.yml:cirrus-ci_config-secrets:77" - }, - { - "Description": "Cirrus-CI Configuration Secret ID", - "StartLine": 79, - "EndLine": 79, - "StartColumn": 19, - "EndColumn": 125, - "Match": "ENCRYPTED[4ca070bffe28eb9b27d63c568b52970dd46f119c3a83b8e443241e895dbf1737580b4d84eed27a311a2b74287ef9f79f]", - "Secret": "ENCRYPTED[4ca070bffe28eb9b27d63c568b52970dd46f119c3a83b8e443241e895dbf1737580b4d84eed27a311a2b74287ef9f79f]", - "File": ".cirrus.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 4.3392925, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "cirrus-ci_config-secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.cirrus.yml:cirrus-ci_config-secrets:79" - }, - { - "Description": "Cirrus-CI Configuration Secret ID", - "StartLine": 331, - "EndLine": 331, - "StartColumn": 19, - "EndColumn": 125, - "Match": "ENCRYPTED[927dc01e755eaddb4242b0845cf86c9098d1e3dffac38c70aefb1487fd8b4fe6dd6ae627b3bffafaba70e2c63172664e]", - "Secret": "ENCRYPTED[927dc01e755eaddb4242b0845cf86c9098d1e3dffac38c70aefb1487fd8b4fe6dd6ae627b3bffafaba70e2c63172664e]", - "File": ".cirrus.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 4.346198, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "cirrus-ci_config-secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.cirrus.yml:cirrus-ci_config-secrets:331" - }, - { - "Description": "Cirrus-CI Configuration Secret ID", - "StartLine": 332, - "EndLine": 332, - "StartColumn": 19, - "EndColumn": 125, - "Match": "ENCRYPTED[c145e9c16b6fb88d476944a454bf4c1ccc84bb4ecaca73bdd28bdacef0dfa7959ebc8171a27b2e4064d66093b2cdba49]", - "Secret": "ENCRYPTED[c145e9c16b6fb88d476944a454bf4c1ccc84bb4ecaca73bdd28bdacef0dfa7959ebc8171a27b2e4064d66093b2cdba49]", - "File": ".cirrus.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 4.2611127, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "cirrus-ci_config-secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.cirrus.yml:cirrus-ci_config-secrets:332" - }, - { - "Description": "Cirrus-CI Configuration Secret ID", - "StartLine": 1055, - "EndLine": 1055, - "StartColumn": 18, - "EndColumn": 124, - "Match": "ENCRYPTED[21b2db557171b11eb5abdbccae593f48c9caeba86dfcc4d4ff109edee9b4656ab6720a110dadfcd51e88cc59a71cc7af]", - "Secret": "ENCRYPTED[21b2db557171b11eb5abdbccae593f48c9caeba86dfcc4d4ff109edee9b4656ab6720a110dadfcd51e88cc59a71cc7af]", - "File": ".cirrus.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 4.256668, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "cirrus-ci_config-secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.cirrus.yml:cirrus-ci_config-secrets:1055" - }, - { - "Description": "Cirrus-CI Configuration Secret ID", - "StartLine": 1056, - "EndLine": 1056, - "StartColumn": 19, - "EndColumn": 125, - "Match": "ENCRYPTED[3a198350077849c8df14b723c0f4c9fece9ebe6408d35982e7adf2105a33f8e0e166ed3ed614875a0887e1af2b8775f4]", - "Secret": "ENCRYPTED[3a198350077849c8df14b723c0f4c9fece9ebe6408d35982e7adf2105a33f8e0e166ed3ed614875a0887e1af2b8775f4]", - "File": ".cirrus.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 4.3339343, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "cirrus-ci_config-secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.cirrus.yml:cirrus-ci_config-secrets:1056" - }, - { - "Description": "Cirrus-CI Configuration Secret ID", - "StartLine": 1057, - "EndLine": 1057, - "StartColumn": 19, - "EndColumn": 125, - "Match": "ENCRYPTED[2f9738ef295a706f66a13891b40e8eaa92a89e0e87faf8bed66c41eca72bf76cfd190a6f2d0e8444c631fdf15ed32ef6]", - "Secret": "ENCRYPTED[2f9738ef295a706f66a13891b40e8eaa92a89e0e87faf8bed66c41eca72bf76cfd190a6f2d0e8444c631fdf15ed32ef6]", - "File": ".cirrus.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 4.3005643, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "cirrus-ci_config-secrets", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.cirrus.yml:cirrus-ci_config-secrets:1057" - }, - { - "Description": "Service-account and other credentials with limited/specific and restricted access.", - "StartLine": 331, - "EndLine": 331, - "StartColumn": 10, - "EndColumn": 16, - "Match": "GCPJSON", - "Secret": "GCPJSON", - "File": ".cirrus.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 2.807355, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_envar_credentials", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.cirrus.yml:podman_envar_credentials:331" - }, - { - "Description": "Service-account and other credentials with limited/specific and restricted access.", - "StartLine": 332, - "EndLine": 332, - "StartColumn": 10, - "EndColumn": 16, - "Match": "GCPNAME", - "Secret": "GCPNAME", - "File": ".cirrus.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 2.807355, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_envar_credentials", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.cirrus.yml:podman_envar_credentials:332" - }, - { - "Description": "Service-account and other credentials with limited/specific and restricted access.", - "StartLine": 333, - "EndLine": 333, - "StartColumn": 10, - "EndColumn": 19, - "Match": "GCPPROJECT", - "Secret": "GCPPROJECT", - "File": ".cirrus.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 2.9219282, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_envar_credentials", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.cirrus.yml:podman_envar_credentials:333" - }, - { - "Description": "Service-account and other credentials with limited/specific and restricted access.", - "StartLine": 1055, - "EndLine": 1055, - "StartColumn": 10, - "EndColumn": 15, - "Match": "AWSINI", - "Secret": "AWSINI", - "File": ".cirrus.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 2.251629, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_envar_credentials", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.cirrus.yml:podman_envar_credentials:1055" - }, - { - "Description": "Service-account and other credentials with limited/specific and restricted access.", - "StartLine": 1056, - "EndLine": 1056, - "StartColumn": 10, - "EndColumn": 16, - "Match": "GCPJSON", - "Secret": "GCPJSON", - "File": ".cirrus.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 2.807355, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_envar_credentials", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.cirrus.yml:podman_envar_credentials:1056" - }, - { - "Description": "Service-account and other credentials with limited/specific and restricted access.", - "StartLine": 1057, - "EndLine": 1057, - "StartColumn": 10, - "EndColumn": 16, - "Match": "GCPNAME", - "Secret": "GCPNAME", - "File": ".cirrus.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 2.807355, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_envar_credentials", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.cirrus.yml:podman_envar_credentials:1057" - }, - { - "Description": "Service-account and other credentials with limited/specific and restricted access.", - "StartLine": 1058, - "EndLine": 1058, - "StartColumn": 10, - "EndColumn": 19, - "Match": "GCPPROJECT", - "Secret": "GCPPROJECT", - "File": ".cirrus.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 2.9219282, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_envar_credentials", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.cirrus.yml:podman_envar_credentials:1058" - }, - { - "Description": "Cirrus-CI Cloud service-account credentials", - "StartLine": 77, - "EndLine": 77, - "StartColumn": 2, - "EndColumn": 16, - "Match": "gcp_credentials", - "Secret": "gcp_credentials", - "File": ".cirrus.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.640224, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "cirrus-ci_cloud-credentials", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.cirrus.yml:cirrus-ci_cloud-credentials:77" - }, - { - "Description": "Cirrus-CI Cloud service-account credentials", - "StartLine": 79, - "EndLine": 79, - "StartColumn": 2, - "EndColumn": 16, - "Match": "aws_credentials", - "Secret": "aws_credentials", - "File": ".cirrus.yml", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.5068905, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "cirrus-ci_cloud-credentials", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:.cirrus.yml:cirrus-ci_cloud-credentials:79" - }, - { - "Description": "Service-account and other credentials with limited/specific and restricted access.", - "StartLine": 172, - "EndLine": 172, - "StartColumn": 19, - "EndColumn": 25, - "Match": "GCPJSON", - "Secret": "GCPJSON", - "File": "contrib/cirrus/runner.sh", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 2.807355, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_envar_credentials", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:contrib/cirrus/runner.sh:podman_envar_credentials:172" - }, - { - "Description": "Service-account and other credentials with limited/specific and restricted access.", - "StartLine": 172, - "EndLine": 172, - "StartColumn": 27, - "EndColumn": 33, - "Match": "GCPNAME", - "Secret": "GCPNAME", - "File": "contrib/cirrus/runner.sh", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 2.807355, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_envar_credentials", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:contrib/cirrus/runner.sh:podman_envar_credentials:172" - }, - { - "Description": "Service-account and other credentials with limited/specific and restricted access.", - "StartLine": 172, - "EndLine": 172, - "StartColumn": 35, - "EndColumn": 44, - "Match": "GCPPROJECT", - "Secret": "GCPPROJECT", - "File": "contrib/cirrus/runner.sh", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 2.9219282, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_envar_credentials", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:contrib/cirrus/runner.sh:podman_envar_credentials:172" - }, - { - "Description": "Service-account and other credentials with limited/specific and restricted access.", - "StartLine": 211, - "EndLine": 211, - "StartColumn": 2, - "EndColumn": 8, - "Match": "GCPJSON", - "Secret": "GCPJSON", - "File": "contrib/cirrus/runner.sh", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 2.807355, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_envar_credentials", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:contrib/cirrus/runner.sh:podman_envar_credentials:211" - }, - { - "Description": "Service-account and other credentials with limited/specific and restricted access.", - "StartLine": 211, - "EndLine": 211, - "StartColumn": 11, - "EndColumn": 17, - "Match": "GCPJSON", - "Secret": "GCPJSON", - "File": "contrib/cirrus/runner.sh", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 2.807355, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_envar_credentials", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:contrib/cirrus/runner.sh:podman_envar_credentials:211" - }, - { - "Description": "Service-account and other credentials with limited/specific and restricted access.", - "StartLine": 212, - "EndLine": 212, - "StartColumn": 2, - "EndColumn": 8, - "Match": "GCPNAME", - "Secret": "GCPNAME", - "File": "contrib/cirrus/runner.sh", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 2.807355, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_envar_credentials", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:contrib/cirrus/runner.sh:podman_envar_credentials:212" - }, - { - "Description": "Service-account and other credentials with limited/specific and restricted access.", - "StartLine": 212, - "EndLine": 212, - "StartColumn": 11, - "EndColumn": 17, - "Match": "GCPNAME", - "Secret": "GCPNAME", - "File": "contrib/cirrus/runner.sh", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 2.807355, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_envar_credentials", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:contrib/cirrus/runner.sh:podman_envar_credentials:212" - }, - { - "Description": "Service-account and other credentials with limited/specific and restricted access.", - "StartLine": 213, - "EndLine": 213, - "StartColumn": 2, - "EndColumn": 11, - "Match": "GCPPROJECT", - "Secret": "GCPPROJECT", - "File": "contrib/cirrus/runner.sh", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 2.9219282, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_envar_credentials", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:contrib/cirrus/runner.sh:podman_envar_credentials:213" - }, - { - "Description": "Service-account and other credentials with limited/specific and restricted access.", - "StartLine": 213, - "EndLine": 213, - "StartColumn": 14, - "EndColumn": 23, - "Match": "GCPPROJECT", - "Secret": "GCPPROJECT", - "File": "contrib/cirrus/runner.sh", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 2.9219282, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "podman_envar_credentials", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:contrib/cirrus/runner.sh:podman_envar_credentials:213" - }, - { - "Description": "Generic API Key", - "StartLine": 17, - "EndLine": 17, - "StartColumn": 25, - "EndColumn": 53, - "Match": "auth\": \"ZG9ja2VyOnZlbmRvcg==\"", - "Secret": "ZG9ja2VyOnZlbmRvcg==", - "File": "pkg/auth/auth_test.go", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 4.121928, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "generic-api-key", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:pkg/auth/auth_test.go:generic-api-key:17" - }, - { - "Description": "Generic API Key", - "StartLine": 18, - "EndLine": 18, - "StartColumn": 35, - "EndColumn": 59, - "Match": "auth\": \"ZG9ja2VyOnRvcA==\"", - "Secret": "ZG9ja2VyOnRvcA==", - "File": "pkg/auth/auth_test.go", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.875, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "generic-api-key", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:pkg/auth/auth_test.go:generic-api-key:18" - }, - { - "Description": "Generic API Key", - "StartLine": 19, - "EndLine": 19, - "StartColumn": 23, - "EndColumn": 47, - "Match": "auth\": \"cXVheTpsaWJwb2Q=\"", - "Secret": "cXVheTpsaWJwb2Q=", - "File": "pkg/auth/auth_test.go", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 4, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "generic-api-key", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:pkg/auth/auth_test.go:generic-api-key:19" - }, - { - "Description": "Generic API Key", - "StartLine": 20, - "EndLine": 20, - "StartColumn": 16, - "EndColumn": 36, - "Match": "auth\": \"cXVheTp0b3A=\"", - "Secret": "cXVheTp0b3A=", - "File": "pkg/auth/auth_test.go", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.5849626, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "generic-api-key", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:pkg/auth/auth_test.go:generic-api-key:20" - }, - { - "Description": "Private Key", - "StartLine": 1, - "EndLine": 39, - "StartColumn": 1, - "EndColumn": 29, - "Match": "-----BEGIN RSA PRIVATE KEY-----\n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\n-----END RSA PRIVATE KEY----", - "Secret": "-----BEGIN RSA PRIVATE KEY-----\n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\n-----END RSA PRIVATE KEY----", - "File": "test/certs/domain.key", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 6.024167, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "private-key", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:test/certs/domain.key:private-key:1" - }, - { - "Description": "Generic API Key", - "StartLine": 525, - "EndLine": 525, - "StartColumn": 25, - "EndColumn": 57, - "Match": "auth\": \"cG9kbWFudGVzdDp3cm9uZw==\"", - "Secret": "cG9kbWFudGVzdDp3cm9uZw==", - "File": "test/e2e/login_logout_test.go", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 4.0849624, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "generic-api-key", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:test/e2e/login_logout_test.go:generic-api-key:525" - }, - { - "Description": "Generic API Key", - "StartLine": 526, - "EndLine": 526, - "StartColumn": 14, - "EndColumn": 42, - "Match": "auth\": \"cG9kbWFudGVzdDp0ZXN0\"", - "Secret": "cG9kbWFudGVzdDp0ZXN0", - "File": "test/e2e/login_logout_test.go", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 4.0219283, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "generic-api-key", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:test/e2e/login_logout_test.go:generic-api-key:526" - }, - { - "Description": "Generic API Key", - "StartLine": 572, - "EndLine": 572, - "StartColumn": 37, - "EndColumn": 69, - "Match": "auth\": \"cG9kbWFudGVzdDp3cm9uZw==\"", - "Secret": "cG9kbWFudGVzdDp3cm9uZw==", - "File": "test/e2e/login_logout_test.go", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 4.0849624, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "generic-api-key", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:test/e2e/login_logout_test.go:generic-api-key:572" - }, - { - "Description": "Generic API Key", - "StartLine": 573, - "EndLine": 573, - "StartColumn": 25, - "EndColumn": 53, - "Match": "auth\": \"cG9kbWFudGVzdDp0ZXN0\"", - "Secret": "cG9kbWFudGVzdDp0ZXN0", - "File": "test/e2e/login_logout_test.go", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 4.0219283, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "generic-api-key", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:test/e2e/login_logout_test.go:generic-api-key:573" - }, - { - "Description": "Generic API Key", - "StartLine": 574, - "EndLine": 574, - "StartColumn": 14, - "EndColumn": 42, - "Match": "auth\": \"cG9kbWFudGVzdDp0ZXN0\"", - "Secret": "cG9kbWFudGVzdDp0ZXN0", - "File": "test/e2e/login_logout_test.go", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 4.0219283, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "generic-api-key", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:test/e2e/login_logout_test.go:generic-api-key:574" - }, - { - "Description": "Private Key", - "StartLine": 1, - "EndLine": 11, - "StartColumn": 1, - "EndColumn": 42, - "Match": "-----BEGIN ENCRYPTED COSIGN PRIVATE KEY-----\neyJrZGYiOnsibmFtZSI6InNjcnlwdCIsInBhcmFtcyI6eyJOIjozMjc2OCwiciI6\nOCwicCI6MX0sInNhbHQiOiI2ckxVcEl1M1pTallrY3dua1pNVktuTHNDUjRENTJv\nY3J5Wmh2anZ4L1VrPSJ9LCJjaXBoZXIiOnsibmFtZSI6Im5hY2wvc2VjcmV0Ym94\nIiwibm9uY2UiOiJMTVpkeTNBL285NS9SektUZGR3RURhODJTVThVcDdlKyJ9LCJj\naXBoZXJ0ZXh0IjoiNkkzUlRCc1IwRXpHZWs0SE5LazlVdlpyMEp6Y1Bxemw0ZkEr\nSitJdHlCc0RBSkcyNmhESnFLUDFuQkJTUE5XdHpJRzJUVzQ5Z2hObEJmQy9qYVNk\neFo2QmhXYk9ldlY0MDB4WjVNZ1oyVHdGSnJxaE9HK0JMdmNvanVkc2tOUFpJTlpE\nLytFZVBIYTRlRVJPTWhnSWlTRC9BYTd3eitlc2trVjkrN216Y3N2RVRiTTJTZGd6\nL3daMUtqV3FlOUc2MWlXSTJPSm1rRlhxQWc9PSJ9\n-----END ENCRYPTED COSIGN PRIVATE KEY----", - "Secret": "-----BEGIN ENCRYPTED COSIGN PRIVATE KEY-----\neyJrZGYiOnsibmFtZSI6InNjcnlwdCIsInBhcmFtcyI6eyJOIjozMjc2OCwiciI6\nOCwicCI6MX0sInNhbHQiOiI2ckxVcEl1M1pTallrY3dua1pNVktuTHNDUjRENTJv\nY3J5Wmh2anZ4L1VrPSJ9LCJjaXBoZXIiOnsibmFtZSI6Im5hY2wvc2VjcmV0Ym94\nIiwibm9uY2UiOiJMTVpkeTNBL285NS9SektUZGR3RURhODJTVThVcDdlKyJ9LCJj\naXBoZXJ0ZXh0IjoiNkkzUlRCc1IwRXpHZWs0SE5LazlVdlpyMEp6Y1Bxemw0ZkEr\nSitJdHlCc0RBSkcyNmhESnFLUDFuQkJTUE5XdHpJRzJUVzQ5Z2hObEJmQy9qYVNk\neFo2QmhXYk9ldlY0MDB4WjVNZ1oyVHdGSnJxaE9HK0JMdmNvanVkc2tOUFpJTlpE\nLytFZVBIYTRlRVJPTWhnSWlTRC9BYTd3eitlc2trVjkrN216Y3N2RVRiTTJTZGd6\nL3daMUtqV3FlOUc2MWlXSTJPSm1rRlhxQWc9PSJ9\n-----END ENCRYPTED COSIGN PRIVATE KEY----", - "File": "test/e2e/testdata/sigstore-key.key", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 5.752065, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "private-key", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:test/e2e/testdata/sigstore-key.key:private-key:1" - }, - { - "Description": "Generic API Key", - "StartLine": 57, - "EndLine": 58, - "StartColumn": 4, - "EndColumn": 1, - "Match": "password: dGVzdGluZ3Rlc3RpbmcK", - "Secret": "dGVzdGluZ3Rlc3RpbmcK", - "File": "test/e2e/play_kube_test.go", - "SymlinkFile": "", - "Commit": "36e29a843205e05acedd65b559757a49ffbdd19a", - "Entropy": 3.7219281, - "Author": "Brent Baude", - "Email": "bbaude@redhat.com", - "Date": "2023-12-08T20:41:39Z", - "Message": "Fix WSL machine test regressions\n\nWSL is unable to set or change CPU/memory settings. We should not test\nfor them.\n\nSkip one test and filed issue #20978\n\nSigned-off-by: Brent Baude \u003cbbaude@redhat.com\u003e", - "Tags": [], - "RuleID": "generic-api-key", - "Fingerprint": "36e29a843205e05acedd65b559757a49ffbdd19a:test/e2e/play_kube_test.go:generic-api-key:57" - } -] diff --git a/contrib/cirrus/prebuild.sh b/contrib/cirrus/prebuild.sh index 55a91dd860..8f06db6e03 100755 --- a/contrib/cirrus/prebuild.sh +++ b/contrib/cirrus/prebuild.sh @@ -71,38 +71,6 @@ if [[ "${DISTRO_NV}" == "$PRIOR_FEDORA_NAME" ]]; then export PREBUILD=1 showrun bash ${CIRRUS_WORKING_DIR}/.github/actions/check_cirrus_cron/test.sh fi - - # Note: This may detect leaks, but should not be considered authoritative - # since any PR could modify the contents or arguments. This check is - # simply here to... - msg "Checking GitLeaks functions with current CLI args, configuration, and baseline JSON" - - # TODO: Workaround for GHA Environment, duplicate here for consistency. - # Replace with `--userns=keep-id:uid=1000,gid=1000` w/ newer podman in GHA environment. - declare -a workaround_args - workaround_args=(\ - --user 1000:1000 - --uidmap 0:1:1000 - --uidmap 1000:0:1 - --uidmap 1001:1001:64536 - --gidmap 0:1:1000 - --gidmap 1000:0:1 - --gidmap 1001:1001:64536 - ) - - brdepth=$(get_env_key 'brdepth') - glfqin=$(get_env_key 'glfqin') - glargs=$(get_env_key 'glargs') - showrun podman run --rm \ - --security-opt=label=disable \ - "${workaround_args[@]}" \ - -v $CIRRUS_WORKING_DIR:/subject:ro \ - -v $CIRRUS_WORKING_DIR:/default:ro \ - --tmpfs /report:rw,size=256k,mode=1777 \ - $glfqin \ - detect \ - --log-opts=-$brdepth \ - $glargs fi msg "Checking 3rd party network service connectivity"