HEX
Server: LiteSpeed
System: Linux kapuas.iixcp.rumahweb.net 5.14.0-427.42.1.el9_4.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Nov 1 14:58:02 EDT 2024 x86_64
User: mirz4654 (1666)
PHP: 8.1.33
Disabled: system,exec,escapeshellarg,escapeshellcmd,passthru,proc_close,proc_get_status,proc_nice,proc_open,proc_terminate,shell_exec,popen,pclose,dl,pfsockopen,leak,apache_child_terminate,posix_kill,posix_mkfifo,posix_setsid,posix_setuid,posix_setpgid,ini_alter,show_source,define_syslog_variables,symlink,syslog,openlog,openlog,closelog,ocinumcols,listen,chgrp,apache_note,apache_setenv,debugger_on,debugger_off,ftp_exec,dll,ftp,myshellexec,socket_bind,mail,posix_getwpuid
Upload Files
File: //lib/python3.9/site-packages/ansible_collections/community/sops/roles/install/tasks/github_api.yml
---
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
# SPDX-License-Identifier: GPL-3.0-or-later
# SPDX-FileCopyrightText: 2022, Felix Fontein

- name: Fetch list of releases from GitHub
  ansible.builtin.uri:
    headers:
      Accept: application/vnd.github+json
      Authorization: "{{ ('Bearer ' ~ sops_github_token) if sops_github_token is defined and sops_github_token else '' }}"
    status_code:
      - 200
      - 403  # "HTTP Error 403: rate limit exceeded"
    url: https://api.github.com/repos/mozilla/sops/releases
  register: _community_sops_install_github_releases
  delegate_to: localhost
  run_once: true

- name: In case rate limit was exceeded, inform user
  ansible.builtin.debug:
    msg: >-
      Rate limit exceeded! Make sure to provide a GitHub token
      as `sops_github_token` to reduce the chance of this error.
  when: _community_sops_install_github_releases.status == 403

- name: Determine the latest release
  ansible.builtin.set_fact:
    _community_sops_install_effective_sops_version: >-
      {{
        (
          _community_sops_install_github_releases.json
          | rejectattr("prerelease")
          | rejectattr("draft")
          | map(attribute="tag_name")
          | map("ansible.builtin.regex_replace", "^v", "")
          | community.sops._latest_version
        ) if _community_sops_install_github_releases.status == 200 else ''
      }}