{"id":6346150,"name":"cloudposse/github-action-deploy-argocd","ecosystem":"actions","description":"Deploy on Kubernetes with ArgoCD","homepage":"https://cloudposse.com/accelerate","licenses":"apache-2.0","normalized_licenses":["Apache-2.0"],"repository_url":"https://github.com/cloudposse/github-action-deploy-argocd","keywords_array":[],"namespace":"cloudposse","versions_count":21,"first_release_published_at":"2023-01-20T08:59:19.000Z","latest_release_published_at":"2025-08-27T19:09:33.000Z","latest_release_number":"v0.13.1","last_synced_at":"2026-03-10T19:06:39.292Z","created_at":"2023-02-16T05:34:37.025Z","updated_at":"2026-03-10T19:06:39.292Z","registry_url":"https://github.com/cloudposse/github-action-deploy-argocd","install_command":null,"documentation_url":null,"metadata":{"name":"Deploy ArgoCD","description":"Deploy on Kubernetes with ArgoCD","author":"hello@cloudposse.com","branding":{"icon":"cpu","color":"white"},"inputs":{"cluster":{"description":"Cluster name","required":true},"aws-region":{"description":"AWS region","required":false,"default":"us-east-1"},"path":{"description":"The path where lives the helmfile or helm chart.","required":true},"toolchain":{"description":"Toolchain ('helm', 'helmfile')","required":false,"default":"helmfile"},"ssm-path":{"required":true,"description":"SSM path to read environment secrets"},"operation":{"description":"Operation with helmfiles. (valid options - `deploy`, `destroy`)","required":true,"default":"deploy"},"environment":{"description":"Helmfile environment","required":false,"default":"preview"},"repository":{"description":"Application GitHub repository full name","required":true},"ref":{"description":"Git ref","required":true},"gitref-sha":{"description":"Git SHA (Depricated. Use `ref` instead)","required":false,"default":""},"namespace":{"description":"Kubernetes namespace","required":true},"application":{"description":"Application name","required":true},"image":{"description":"Docker image","required":true},"image-tag":{"description":"Docker image tag","required":true},"debug":{"description":"Debug mode","default":"false","required":false},"values_file":{"description":"Helm values file, this can be a single file or a comma separated list of files","default":"","required":false},"release_label_name":{"description":"The name of the label used to describe the helm release","default":"release","required":false},"github-pat":{"description":"Github PAT to access argocd configuration repository","required":true},"commit-status-github-token":{"description":"Github token to access the app repository. Defaults to github-pat if not set.","required":false},"synchronously":{"description":"Wait until ArgoCD successfully apply the changes","default":"false"},"check-retry-count":{"description":"Check retry count (for synchronously mode)","required":false,"default":"5"},"check-retry-interval":{"description":"Check retry interval (in seconds) (for synchronously mode)","required":false,"default":"10"},"commit-retry-count":{"description":"Commit retry count","required":false,"default":"4"},"commit-retry-interval":{"description":"Commit retry interval (in seconds)","required":false,"default":"10"},"commit-timeout":{"description":"Commit timeout (in seconds)","required":false,"default":"60"},"helm-dependency-build":{"description":"Run helm dependency build, only for helm toolchain, `true` or `false`","required":false,"default":"false"},"helm-args":{"description":"Additional helm arguments","required":false,"default":""},"helmfile-args":{"description":"Additional helmfile arguments","required":false,"default":""},"helm-version":{"description":"Helm version","required":false,"default":"v3.10.2"},"helmfile-version":{"description":"Helmfile version","required":false,"default":"v0.148.1"}},"outputs":{"webapp-url":{"description":"Web Application url","value":"${{ steps.result.outputs.webapp_url }}"},"sha":{"description":"Git commit SHA into argocd repo","value":"${{ steps.git.outputs.sha }}"}},"runs":{"using":"composite","steps":[{"name":"Setup yq","uses":"dcarbone/install-yq-action@v1.1.0","with":{"version":"v4.28.1","download-compressed":true,"force":true}},{"name":"Setup helmfile","uses":"mamezou-tech/setup-helmfile@v1.2.0","if":"${{ inputs.operation == 'deploy' }}","with":{"helmfile-version":"${{ inputs.helmfile-version }}","helm-version":"${{ inputs.helm-version }}","install-kubectl":false}},{"name":"Setup node","uses":"actions/setup-node@v4","with":{"node-version":20}},{"name":"Install git-url-parse","shell":"bash","run":"npm install git-url-parse@14.0.0"},{"name":"Parse git URL for destination","uses":"actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea","id":"destination","with":{"script":"const GitUrlParse = require(\"git-url-parse\");\nfunction run(url) {\n  try { \n    console.log(\"url: %s\", url)\n    const urlObj = GitUrlParse(url);\n    core.setOutput('result', JSON.stringify(urlObj));\n    const keys = Object.keys(urlObj);\n    keys.forEach(key=\u003e{\n      if(typeof urlObj[key] === 'string' || urlObj[key] === null){\n        core.setOutput(key, urlObj[key]);\n      }\n    })\n  } \n  catch (error) {\n    core.setFailed(error.message);\n  }\n}\nrun(\"${{ inputs.cluster }}\")\n"}},{"id":"destination_dir","shell":"bash","run":"echo \"name=$(echo $RANDOM | md5sum | head -c 20)\" \u003e\u003e $GITHUB_OUTPUT"},{"name":"Config","id":"config","uses":"cloudposse/github-action-yaml-config-query@0.1.3","with":{"config":"tmp: ./tmp/${{ steps.destination.outputs.filepath }}/${{ inputs.namespace }}/${{ inputs.application }}\npath: ${{ steps.destination.outputs.filepath }}/${{ inputs.namespace }}/${{ inputs.application }}"}},{"name":"Checkout Argo Configuration","uses":"actions/checkout@v3","with":{"repository":"${{ steps.destination.outputs.owner }}/${{ steps.destination.outputs.name }}","ref":"${{ steps.destination.outputs.ref }}","token":"${{ inputs.github-pat }}","path":"${{ steps.destination_dir.outputs.name }}"}},{"name":"Setup chamber","if":"${{ inputs.operation == 'deploy' }}","shell":"bash","env":{"version":"v2.14.1"},"run":"set -x\nos=$(uname -s | tr '[:upper:]' '[:lower:]')\narch=\"\"\ncase $(uname -m) in\n  x86_64)\n    arch=\"amd64\"\n    ;;\n  aarch64)\n    arch=\"arm64\"\n    ;;\n  arch64)\n    arch=\"arm64\"\n    ;;\n  *)\n    echo \"Unsupported architecture $(uname -m)\"\n    exit 1\n    ;;\nesac\ncurl -LOs https://github.com/segmentio/chamber/releases/download/${version}/chamber-${version}-${os}-${arch}\nsudo install chamber-${version}-${os}-${arch} /usr/local/bin/chamber\n"},{"name":"Read platform context","if":"${{ inputs.operation == 'deploy' }}","shell":"bash","run":"chamber --verbose export ${{ inputs.ssm-path }}/${{ inputs.environment }} --format yaml --output-file ./platform.yaml\n"},{"name":"YQ Platform settings","if":"${{ inputs.operation == 'deploy' }}","shell":"bash","run":"sudo chmod 777 ./platform.yaml \nyq --exit-status --no-colors --inplace eval '{\"platform\": .}' ./platform.yaml\n"},{"name":"Read platform metadata","if":"${{ inputs.operation == 'deploy' }}","shell":"bash","run":"chamber --verbose export ${{ inputs.ssm-path }}/_metadata --format yaml --output-file ./_metadata.yaml\n"},{"name":"YQ Platform settings","if":"${{ inputs.operation == 'deploy' }}","shell":"bash","id":"metadata","run":"for output in $(yq --exit-status --no-colors eval-all '. | to_entries | map( .key + \"=\" + .value ) | join(\"\\n\")' ./_metadata.yaml); do\n  echo \"${output}\" \u003e\u003e $GITHUB_OUTPUT ;\ndone\n"},{"name":"Context","if":"${{ inputs.operation == 'deploy' }}","id":"arguments","uses":"cloudposse/github-action-yaml-config-query@0.1.3","with":{"query":".${{ steps.metadata.outputs.kube_version == '' }}","config":"true: \n  kube_version: \"\"\nfalse:\n  kube_version: --kube-version=${{ steps.metadata.outputs.kube_version }}      "}},{"name":"Ensure argocd repo structure","if":"${{ inputs.operation == 'deploy' }}","shell":"bash","run":"mkdir -p ${{ steps.config.outputs.tmp }}/manifests\n"},{"name":"Helmfile render","if":"${{ inputs.toolchain == 'helmfile' \u0026\u0026 inputs.operation == 'deploy' }}","shell":"bash","run":"helmfile --namespace ${{ inputs.namespace }} \\\n  --environment ${{ inputs.environment }} \\\n  --file ${{ inputs.path}} \\\n  --state-values-file $(pwd)/platform.yaml \\\n  template \\\n  --args=\"${{ steps.arguments.outputs.kube_version }}\" \\\n  ${{ inputs.helmfile-args }} \u003e ${{ steps.config.outputs.tmp }}/manifests/resources.yaml\n","env":{"IMAGE_NAME":"${{ inputs.image }}","IMAGE_TAG":"${{ inputs.image-tag }}"}},{"name":"Build Helm Dependencies","if":"${{ inputs.toolchain == 'helm' \u0026\u0026 inputs.operation == 'deploy' \u0026\u0026 inputs.helm-dependency-build == 'true'}}","shell":"bash","run":"helm dependency build ${{ inputs.path }}\n"},{"name":"Helm raw render","if":"${{ inputs.toolchain == 'helm' \u0026\u0026 inputs.operation == 'deploy' }}","shell":"bash","run":"IFS=', ' read -r -a array \u003c\u003c\u003c \"${{ inputs.values_file }}\"\nfor element in ${array[@]}; do VALUES_STR+=\"--values $element \"; done\n\nhelm template ${{ inputs.application }} ${{ inputs.path }} \\\n  --set image.repository=${{ inputs.image }} \\\n  --set global.image.repository=${{ inputs.image }} \\\n  --set image.tag=${{ inputs.image-tag }} \\\n  --set global.image.tag=${{ inputs.image-tag }} \\\n  --set environment=${{ inputs.environment }} \\\n  --create-namespace=true \\\n  --namespace ${{ inputs.namespace }} \\\n  --set ingress.default.hosts.example=test \\\n  --values $(pwd)/platform.yaml \\\n  ${VALUES_STR} \\\n  ${{ inputs.helm-args }} \\\n  ${{ steps.arguments.outputs.kube_version }} \\\n\u003e ${{ steps.config.outputs.tmp }}/manifests/resources.yaml\n","env":{"IMAGE_NAME":"${{ inputs.image }}","IMAGE_TAG":"${{ inputs.image-tag }}"}},{"name":"Get Webapp","if":"${{ inputs.operation == 'deploy' }}","id":"result","shell":"bash","run":"WEBAPP_URL=$( \\\n  yq -N eval-all '[.metadata.annotations[\"outputs.platform.cloudposse.com/webapp-url\"] | select(. != null)] | .[0]' \\\n    ${{ steps.config.outputs.tmp }}/manifests/resources.yaml \\\n)\necho \"webapp_url=${WEBAPP_URL}\" \u003e\u003e $GITHUB_OUTPUT"},{"name":"Deplicated Ref","if":"${{ inputs.operation == 'deploy' }}","id":"ref","uses":"cloudposse/github-action-yaml-config-query@0.1.3","with":{"query":".${{ inputs.gitref-sha == '' }}","config":"true: \n  value: ${{ inputs.ref }}\nfalse:\n  value: ${{ inputs.gitref-sha }}      "}},{"name":"Config render","if":"${{ inputs.operation == 'deploy' }}","uses":"1arp/create-a-file-action@0.2","with":{"path":"${{ steps.config.outputs.tmp }}","file":"config.yaml","content":"app_repository: ${{ inputs.repository }}\napp_commit: ${{ steps.ref.outputs.value }}\napp_hostname: ${{ steps.result.outputs.webapp_url }}\nname: ${{ inputs.namespace }}.${{ inputs.application }}\nnamespace: ${{ inputs.namespace }}\nmanifests: ${{ steps.config.outputs.path }}/manifests"}},{"name":"Push to Github","uses":"nick-fields/retry@v2","id":"git","with":{"max_attempts":"${{ inputs.commit-retry-count }}","timeout_seconds":"${{ inputs.commit-timeout }}","retry_wait_seconds":"${{ inputs.commit-retry-interval }}","shell":"bash","command":"set -e\n\ngit config --global user.email \"bot@example.com\"\ngit config --global user.name \"cloudpossebot\"\n\npushd ./${{ steps.destination_dir.outputs.name }}\n\ngit reset --hard origin/${{ steps.destination.outputs.ref }}\ngit pull --rebase\n\npopd\n\ncase '${{ inputs.operation }}' in\n\n  deploy)\n    cp -r ./tmp/* ./${{ steps.destination_dir.outputs.name }}/\n  ;;\n\n  destroy)\n    rm -rf ./${{ steps.destination_dir.outputs.name }}/${{ steps.config.outputs.path }}\n  ;;\n\n  *)\n    echo \"Operation should be `deploy` or `destroy`\"\n    exit 1;\n  ;;\nesac          \n\npushd ./${{ steps.destination_dir.outputs.name }}\n\ngit add -A\ngit status\ngit diff-index --quiet HEAD || git commit -m \"Deploy ${{ github.repository }} SHA ${{ github.sha }} RUN ${{ github.run_id }} ATEMPT ${{ github.run_attempt }}\"\ngit push origin ${{ steps.destination.outputs.ref }}\n\necho \"sha=$(git rev-parse HEAD)\" \u003e\u003e $GITHUB_OUTPUT\n\npopd"}},{"name":"Select GitHub Token for Sync Mode","id":"commit_status_github_token","if":"${{ inputs.synchronously == 'true' \u0026\u0026 inputs.operation == 'deploy' }}","shell":"bash","run":"if [ -z \"${{ inputs.commit-status-github-token }}\" ]; then\n  echo \"token=${{ inputs.github-pat }}\" \u003e\u003e $GITHUB_OUTPUT\nelse\n  echo \"token=${{ inputs.commit-status-github-token }}\" \u003e\u003e $GITHUB_OUTPUT\nfi"},{"uses":"cloudposse/github-action-wait-commit-status@0.2.0","if":"${{ inputs.synchronously == 'true' \u0026\u0026 inputs.operation == 'deploy' }}","with":{"repository":"${{ inputs.repository }}","sha":"${{ inputs.ref }}","status":"continuous-delivery/${{ inputs.namespace }}.${{ inputs.application }}","expected_state":"success","token":"${{ steps.commit_status_github_token.outputs.token }}","check-retry-count":"${{ inputs.check-retry-count }}","check-retry-interval":"${{ inputs.check-retry-interval }}"}}]},"default_branch":"main","path":null},"repo_metadata":{"id":65530662,"uuid":"586097279","full_name":"cloudposse/github-action-deploy-argocd","owner":"cloudposse","description":"Deploy on Kubernetes with Helm/Helmfile and ArgoCD","archived":false,"fork":false,"pushed_at":"2025-08-26T15:58:50.000Z","size":2150,"stargazers_count":12,"open_issues_count":13,"forks_count":7,"subscribers_count":7,"default_branch":"main","last_synced_at":"2025-08-26T21:17:49.158Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://cloudposse.com/accelerate","language":"Smarty","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cloudposse.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":"cloudposse"}},"created_at":"2023-01-06T23:53:02.000Z","updated_at":"2025-07-24T18:37:52.000Z","dependencies_parsed_at":"2023-11-15T05:21:14.906Z","dependency_job_id":"5d8115d6-638c-4811-a568-4b950114cb88","html_url":"https://github.com/cloudposse/github-action-deploy-argocd","commit_stats":{"total_commits":67,"total_committers":4,"mean_commits":16.75,"dds":0.04477611940298509,"last_synced_commit":"4ce6ae91195d28cc21e525dca8dd1d0d352695fa"},"previous_names":[],"tags_count":20,"template":false,"template_full_name":"cloudposse-github-actions/composite-template","purl":"pkg:github/cloudposse/github-action-deploy-argocd","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-deploy-argocd","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-deploy-argocd/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-deploy-argocd/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-deploy-argocd/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cloudposse","download_url":"https://codeload.github.com/cloudposse/github-action-deploy-argocd/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-deploy-argocd/sbom","scorecard":{"id":293167,"data":{"date":"2025-08-11","repo":{"name":"github.com/cloudposse/github-action-deploy-argocd","commit":"a552d00342d637208a71a4f7f3be1201e92a9def"},"scorecard":{"version":"v5.2.1-40-gf6ed084d","commit":"f6ed084d17c9236477efd66e5b258b9d4cc7b389"},"score":5.5,"checks":[{"name":"Maintained","score":4,"reason":"5 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 4","details":null,"documentation":{"short":"Determines if the project is \"actively maintained\".","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#maintained"}},{"name":"Code-Review","score":5,"reason":"Found 15/27 approved changesets -- score normalized to 5","details":null,"documentation":{"short":"Determines if the project requires human code review before pull requests (aka merge requests) are merged.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#code-review"}},{"name":"Dangerous-Workflow","score":10,"reason":"no dangerous workflow patterns detected","details":null,"documentation":{"short":"Determines if the project's GitHub Action workflows avoid dangerous patterns.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#dangerous-workflow"}},{"name":"Binary-Artifacts","score":10,"reason":"no binaries found in the repo","details":null,"documentation":{"short":"Determines if the project has generated executable (binary) artifacts in the source repository.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#binary-artifacts"}},{"name":"Packaging","score":-1,"reason":"packaging workflow not detected","details":["Warn: no GitHub/GitLab publishing workflow detected."],"documentation":{"short":"Determines if the project is published as a package that others can easily download, install, easily update, and uninstall.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#packaging"}},{"name":"CII-Best-Practices","score":0,"reason":"no effort to earn an OpenSSF best practices badge detected","details":null,"documentation":{"short":"Determines if the project has an OpenSSF (formerly CII) Best Practices Badge.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#cii-best-practices"}},{"name":"Token-Permissions","score":0,"reason":"detected GitHub workflow tokens with excessive permissions","details":["Warn: topLevel 'contents' permission set to 'write': .github/workflows/branch.yml:20","Warn: topLevel 'actions' permission set to 'write': .github/workflows/branch.yml:21","Warn: topLevel 'contents' permission set to 'write': .github/workflows/release.yml:8","Warn: no topLevel permission defined: .github/workflows/test-destroy.yml:1","Warn: no topLevel permission defined: .github/workflows/test-helm-raw-default-kube-version.yml:1","Warn: no topLevel permission defined: .github/workflows/test-helm-raw.yml:1","Warn: no topLevel permission defined: .github/workflows/test-helmfile-raw-default-kube-version.yml:1","Warn: no topLevel permission defined: .github/workflows/test-helmfile-raw.yml:1","Info: no jobLevel write permissions found"],"documentation":{"short":"Determines if the project's workflows follow the principle of least privilege.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#token-permissions"}},{"name":"Pinned-Dependencies","score":0,"reason":"dependency not pinned by hash detected -- score normalized to 0","details":["Warn: third-party GitHubAction not pinned by hash: .github/workflows/branch.yml:25: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-deploy-argocd/branch.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/release.yml:13: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-deploy-argocd/release.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/test-destroy.yml:24: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-deploy-argocd/test-destroy.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/test-destroy.yml:77: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-deploy-argocd/test-destroy.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test-destroy.yml:136: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-deploy-argocd/test-destroy.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test-destroy.yml:142: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-deploy-argocd/test-destroy.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test-destroy.yml:151: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-deploy-argocd/test-destroy.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/test-helm-raw-default-kube-version.yml:40: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-deploy-argocd/test-helm-raw-default-kube-version.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test-helm-raw-default-kube-version.yml:94: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-deploy-argocd/test-helm-raw-default-kube-version.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test-helm-raw-default-kube-version.yml:99: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-deploy-argocd/test-helm-raw-default-kube-version.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test-helm-raw-default-kube-version.yml:104: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-deploy-argocd/test-helm-raw-default-kube-version.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/test-helm-raw-default-kube-version.yml:111: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-deploy-argocd/test-helm-raw-default-kube-version.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test-helm-raw-default-kube-version.yml:128: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-deploy-argocd/test-helm-raw-default-kube-version.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test-helm-raw-default-kube-version.yml:143: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-deploy-argocd/test-helm-raw-default-kube-version.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test-helm-raw.yml:100: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-deploy-argocd/test-helm-raw.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test-helm-raw.yml:105: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-deploy-argocd/test-helm-raw.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test-helm-raw.yml:110: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-deploy-argocd/test-helm-raw.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/test-helm-raw.yml:117: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-deploy-argocd/test-helm-raw.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test-helm-raw.yml:134: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-deploy-argocd/test-helm-raw.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test-helm-raw.yml:149: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-deploy-argocd/test-helm-raw.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test-helm-raw.yml:164: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-deploy-argocd/test-helm-raw.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/test-helm-raw.yml:40: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-deploy-argocd/test-helm-raw.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/test-helmfile-raw-default-kube-version.yml:41: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-deploy-argocd/test-helmfile-raw-default-kube-version.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test-helmfile-raw-default-kube-version.yml:97: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-deploy-argocd/test-helmfile-raw-default-kube-version.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test-helmfile-raw-default-kube-version.yml:102: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-deploy-argocd/test-helmfile-raw-default-kube-version.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test-helmfile-raw-default-kube-version.yml:107: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-deploy-argocd/test-helmfile-raw-default-kube-version.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/test-helmfile-raw-default-kube-version.yml:114: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-deploy-argocd/test-helmfile-raw-default-kube-version.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test-helmfile-raw-default-kube-version.yml:131: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-deploy-argocd/test-helmfile-raw-default-kube-version.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test-helmfile-raw-default-kube-version.yml:146: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-deploy-argocd/test-helmfile-raw-default-kube-version.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test-helmfile-raw-default-kube-version.yml:161: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-deploy-argocd/test-helmfile-raw-default-kube-version.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/test-helmfile-raw.yml:43: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-deploy-argocd/test-helmfile-raw.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/test-helmfile-raw.yml:107: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-deploy-argocd/test-helmfile-raw.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test-helmfile-raw.yml:156: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-deploy-argocd/test-helmfile-raw.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test-helmfile-raw.yml:168: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-deploy-argocd/test-helmfile-raw.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test-helmfile-raw.yml:173: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-deploy-argocd/test-helmfile-raw.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test-helmfile-raw.yml:178: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-deploy-argocd/test-helmfile-raw.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/test-helmfile-raw.yml:185: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-deploy-argocd/test-helmfile-raw.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test-helmfile-raw.yml:202: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-deploy-argocd/test-helmfile-raw.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test-helmfile-raw.yml:217: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-deploy-argocd/test-helmfile-raw.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test-helmfile-raw.yml:232: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-deploy-argocd/test-helmfile-raw.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test-helmfile-raw.yml:248: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-deploy-argocd/test-helmfile-raw.yml/main?enable=pin","Info:   0 out of  11 GitHub-owned GitHubAction dependencies pinned","Info:   0 out of  30 third-party GitHubAction dependencies pinned"],"documentation":{"short":"Determines if the project has declared and pinned the dependencies of its build process.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#pinned-dependencies"}},{"name":"Vulnerabilities","score":10,"reason":"0 existing vulnerabilities detected","details":null,"documentation":{"short":"Determines if the project has open, known unfixed vulnerabilities.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#vulnerabilities"}},{"name":"Fuzzing","score":0,"reason":"project is not fuzzed","details":["Warn: no fuzzer integrations found"],"documentation":{"short":"Determines if the project uses fuzzing.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#fuzzing"}},{"name":"License","score":10,"reason":"license file detected","details":["Info: project has a license file: LICENSE:0","Info: FSF or OSI recognized license: Apache License 2.0: LICENSE:0"],"documentation":{"short":"Determines if the project has defined a license.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#license"}},{"name":"Signed-Releases","score":-1,"reason":"no releases found","details":null,"documentation":{"short":"Determines if the project cryptographically signs release artifacts.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#signed-releases"}},{"name":"Security-Policy","score":10,"reason":"security policy file detected","details":["Info: security policy file detected: github.com/cloudposse/.github/SECURITY.md:1","Info: Found linked content: github.com/cloudposse/.github/SECURITY.md:1","Info: Found disclosure, vulnerability, and/or timelines in security policy: github.com/cloudposse/.github/SECURITY.md:1","Info: Found text in security policy: github.com/cloudposse/.github/SECURITY.md:1"],"documentation":{"short":"Determines if the project has published a security policy.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#security-policy"}},{"name":"SAST","score":0,"reason":"SAST tool is not run on all commits -- score normalized to 0","details":["Warn: 0 commits out of 23 are checked with a SAST tool"],"documentation":{"short":"Determines if the project uses static code analysis.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#sast"}},{"name":"Branch-Protection","score":6,"reason":"branch protection is not maximal on development and all release branches","details":["Info: 'allow deletion' disabled on branch 'main'","Info: 'force pushes' disabled on branch 'main'","Warn: 'branch protection settings apply to administrators' is disabled on branch 'main'","Info: 'stale review dismissal' is required to merge on branch 'main'","Warn: required approving review count is 1 on branch 'main'","Warn: codeowners review is required - but no codeowners file found in repo","Info: 'last push approval' is required to merge on branch 'main'","Warn: no status checks found to merge onto branch 'main'","Info: PRs are required in order to make changes on branch 'main'"],"documentation":{"short":"Determines if the default and release branches are protected with GitHub's branch protection settings.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#branch-protection"}}]},"last_synced_at":"2025-08-17T18:49:05.585Z","repository_id":65530662,"created_at":"2025-08-17T18:49:05.585Z","updated_at":"2025-08-17T18:49:05.585Z"},"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272284987,"owners_count":24907002,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-27T02:00:09.397Z","response_time":76,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"},"owner_record":{"login":"cloudposse","name":"Cloud Posse","uuid":"16398900","kind":"organization","description":"DevOps Accelerator for AWS Infrastructure  🙌  Hire Us!  \u003chttps://cloudposse.com/services\u003e","email":"hello@cloudposse.com","website":"https://cloudposse.com/","location":"United States of America","twitter":"cloudposse","company":null,"icon_url":"https://avatars.githubusercontent.com/u/16398900?v=4","repositories_count":258,"last_synced_at":"2025-08-18T21:36:15.663Z","metadata":{"has_sponsors_listing":true,"funding":{"github":"cloudposse"}},"html_url":"https://github.com/cloudposse","funding_links":["https://github.com/sponsors/cloudposse"],"total_stars":16567,"followers":1621,"following":0,"created_at":"2022-11-03T23:59:39.987Z","updated_at":"2025-08-18T21:36:15.664Z","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cloudposse","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cloudposse/repositories"},"tags":[{"name":"v0.13.0","sha":"44b1faa076601ab9502e403da2716fdc1c39f11c","kind":"commit","published_at":"2025-03-28T19:40:58.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-deploy-argocd/tar.gz/v0.13.0","html_url":"https://github.com/cloudposse/github-action-deploy-argocd/releases/tag/v0.13.0","dependencies_parsed_at":null,"dependency_job_id":"5211f58e-c175-4424-b9d9-872c6ca102ed","purl":"pkg:github/cloudposse/github-action-deploy-argocd@v0.13.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-deploy-argocd/tags/v0.13.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-deploy-argocd/tags/v0.13.0/manifests"},{"name":"v0.12.0","sha":"cfe7d155c5772b27e94479a047e7d037d676524f","kind":"commit","published_at":"2024-07-12T16:40:40.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-deploy-argocd/tar.gz/v0.12.0","html_url":"https://github.com/cloudposse/github-action-deploy-argocd/releases/tag/v0.12.0","dependencies_parsed_at":"2024-07-18T08:55:51.928Z","dependency_job_id":null,"purl":"pkg:github/cloudposse/github-action-deploy-argocd@v0.12.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-deploy-argocd/tags/v0.12.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-deploy-argocd/tags/v0.12.0/manifests"},{"name":"v0.11.3","sha":"c6a83a1e041e6d9c868b5124549b9aaf8d08c3cc","kind":"commit","published_at":"2024-07-10T21:14:22.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-deploy-argocd/tar.gz/v0.11.3","html_url":"https://github.com/cloudposse/github-action-deploy-argocd/releases/tag/v0.11.3","dependencies_parsed_at":"2024-07-14T04:51:12.758Z","dependency_job_id":null,"purl":"pkg:github/cloudposse/github-action-deploy-argocd@v0.11.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-deploy-argocd/tags/v0.11.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-deploy-argocd/tags/v0.11.3/manifests"},{"name":"v0.11.2","sha":"964f0ddb5def27ea280c198d016ed6f307590a47","kind":"commit","published_at":"2024-07-09T15:45:40.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-deploy-argocd/tar.gz/v0.11.2","html_url":"https://github.com/cloudposse/github-action-deploy-argocd/releases/tag/v0.11.2","dependencies_parsed_at":"2024-07-11T04:03:51.491Z","dependency_job_id":null,"purl":"pkg:github/cloudposse/github-action-deploy-argocd@v0.11.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-deploy-argocd/tags/v0.11.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-deploy-argocd/tags/v0.11.2/manifests"},{"name":"v0.11.1","sha":"1985d32ccc0efac9a5cefafadc59113619491649","kind":"commit","published_at":"2024-07-08T19:44:59.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-deploy-argocd/tar.gz/v0.11.1","html_url":"https://github.com/cloudposse/github-action-deploy-argocd/releases/tag/v0.11.1","dependencies_parsed_at":"2024-07-10T04:21:06.465Z","dependency_job_id":null,"purl":"pkg:github/cloudposse/github-action-deploy-argocd@v0.11.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-deploy-argocd/tags/v0.11.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-deploy-argocd/tags/v0.11.1/manifests"},{"name":"v0.11.0","sha":"27601e951ae723031fb05854e7d590c5f2f9d85b","kind":"commit","published_at":"2024-07-08T18:55:13.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-deploy-argocd/tar.gz/v0.11.0","html_url":"https://github.com/cloudposse/github-action-deploy-argocd/releases/tag/v0.11.0","dependencies_parsed_at":"2024-07-10T04:21:06.565Z","dependency_job_id":null,"purl":"pkg:github/cloudposse/github-action-deploy-argocd@v0.11.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-deploy-argocd/tags/v0.11.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-deploy-argocd/tags/v0.11.0/manifests"},{"name":"v0.10.0","sha":"09314db088f1b10594e0d6b9f1495d9f26574078","kind":"commit","published_at":"2024-07-08T18:21:50.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-deploy-argocd/tar.gz/v0.10.0","html_url":"https://github.com/cloudposse/github-action-deploy-argocd/releases/tag/v0.10.0","dependencies_parsed_at":"2024-07-10T04:21:06.508Z","dependency_job_id":null,"purl":"pkg:github/cloudposse/github-action-deploy-argocd@v0.10.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-deploy-argocd/tags/v0.10.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-deploy-argocd/tags/v0.10.0/manifests"},{"name":"v0.9.0","sha":"a38961843d91c9382cfd11524605e6d3d8465d45","kind":"commit","published_at":"2024-06-28T08:15:38.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-deploy-argocd/tar.gz/v0.9.0","html_url":"https://github.com/cloudposse/github-action-deploy-argocd/releases/tag/v0.9.0","dependencies_parsed_at":null,"dependency_job_id":"9b5e64bb-6acc-4460-b4f9-6b5f1ca28a30","purl":"pkg:github/cloudposse/github-action-deploy-argocd@v0.9.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-deploy-argocd/tags/v0.9.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-deploy-argocd/tags/v0.9.0/manifests"},{"name":"0.8.2","sha":"428fa8acaaf994e0ecb63359b77f5e53a1253f51","kind":"commit","published_at":"2024-05-23T23:33:33.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-deploy-argocd/tar.gz/0.8.2","html_url":"https://github.com/cloudposse/github-action-deploy-argocd/releases/tag/0.8.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/cloudposse/github-action-deploy-argocd@0.8.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-deploy-argocd/tags/0.8.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-deploy-argocd/tags/0.8.2/manifests"},{"name":"v0","sha":"428fa8acaaf994e0ecb63359b77f5e53a1253f51","kind":"commit","published_at":"2024-05-23T23:33:33.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-deploy-argocd/tar.gz/v0","html_url":"https://github.com/cloudposse/github-action-deploy-argocd/releases/tag/v0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/cloudposse/github-action-deploy-argocd@v0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-deploy-argocd/tags/v0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-deploy-argocd/tags/v0/manifests"},{"name":"0.8.1","sha":"7356b85794090fe604f3c757dbb999d762377ea4","kind":"commit","published_at":"2024-01-03T17:24:27.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-deploy-argocd/tar.gz/0.8.1","html_url":"https://github.com/cloudposse/github-action-deploy-argocd/releases/tag/0.8.1","dependencies_parsed_at":"2024-01-27T04:29:44.013Z","dependency_job_id":null,"purl":"pkg:github/cloudposse/github-action-deploy-argocd@0.8.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-deploy-argocd/tags/0.8.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-deploy-argocd/tags/0.8.1/manifests"},{"name":"0.8.0","sha":"455468e58c7aa00d0f0e7cc6b8129d5c99f7d6a7","kind":"commit","published_at":"2023-07-20T11:36:57.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-deploy-argocd/tar.gz/0.8.0","html_url":"https://github.com/cloudposse/github-action-deploy-argocd/releases/tag/0.8.0","dependencies_parsed_at":"2023-08-13T04:19:39.434Z","dependency_job_id":null,"purl":"pkg:github/cloudposse/github-action-deploy-argocd@0.8.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-deploy-argocd/tags/0.8.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-deploy-argocd/tags/0.8.0/manifests"},{"name":"0.7.0","sha":"152ac2e511e1f5d0a99b6d8182af0420c3354da3","kind":"commit","published_at":"2023-07-19T17:29:06.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-deploy-argocd/tar.gz/0.7.0","html_url":"https://github.com/cloudposse/github-action-deploy-argocd/releases/tag/0.7.0","dependencies_parsed_at":"2023-07-20T12:13:05.331Z","dependency_job_id":null,"purl":"pkg:github/cloudposse/github-action-deploy-argocd@0.7.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-deploy-argocd/tags/0.7.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-deploy-argocd/tags/0.7.0/manifests"},{"name":"0.6.0","sha":"3c8cb714f7140195e93dd2ec70bc06c5ea4bb3f7","kind":"commit","published_at":"2023-06-27T21:46:24.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-deploy-argocd/tar.gz/0.6.0","html_url":"https://github.com/cloudposse/github-action-deploy-argocd/releases/tag/0.6.0","dependencies_parsed_at":"2023-07-20T14:01:19.551Z","dependency_job_id":null,"purl":"pkg:github/cloudposse/github-action-deploy-argocd@0.6.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-deploy-argocd/tags/0.6.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-deploy-argocd/tags/0.6.0/manifests"},{"name":"0.5.0","sha":"5abaf649e1dd73ee32e4d5feac04ee59e1b1c0c3","kind":"commit","published_at":"2023-04-26T18:35:37.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-deploy-argocd/tar.gz/0.5.0","html_url":"https://github.com/cloudposse/github-action-deploy-argocd/releases/tag/0.5.0","dependencies_parsed_at":"2023-07-20T14:01:22.725Z","dependency_job_id":null,"purl":"pkg:github/cloudposse/github-action-deploy-argocd@0.5.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-deploy-argocd/tags/0.5.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-deploy-argocd/tags/0.5.0/manifests"},{"name":"0.4.1","sha":"75ca1749ef041bd42a06df77e3824766185dbf8f","kind":"commit","published_at":"2023-04-10T15:55:14.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-deploy-argocd/tar.gz/0.4.1","html_url":"https://github.com/cloudposse/github-action-deploy-argocd/releases/tag/0.4.1","dependencies_parsed_at":"2023-07-20T14:01:19.691Z","dependency_job_id":null,"purl":"pkg:github/cloudposse/github-action-deploy-argocd@0.4.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-deploy-argocd/tags/0.4.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-deploy-argocd/tags/0.4.1/manifests"},{"name":"0.4.0","sha":"0058b65be9a7f4b8b347c038538d98c2d2485418","kind":"commit","published_at":"2023-04-09T22:46:09.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-deploy-argocd/tar.gz/0.4.0","html_url":"https://github.com/cloudposse/github-action-deploy-argocd/releases/tag/0.4.0","dependencies_parsed_at":"2023-07-20T14:01:22.215Z","dependency_job_id":null,"purl":"pkg:github/cloudposse/github-action-deploy-argocd@0.4.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-deploy-argocd/tags/0.4.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-deploy-argocd/tags/0.4.0/manifests"},{"name":"0.3.0","sha":"f8fe946feba7021bbb853aa53b364303e1b4e4d2","kind":"commit","published_at":"2023-03-21T22:22:17.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-deploy-argocd/tar.gz/0.3.0","html_url":"https://github.com/cloudposse/github-action-deploy-argocd/releases/tag/0.3.0","dependencies_parsed_at":"2023-07-20T14:01:22.114Z","dependency_job_id":null,"purl":"pkg:github/cloudposse/github-action-deploy-argocd@0.3.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-deploy-argocd/tags/0.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-deploy-argocd/tags/0.3.0/manifests"},{"name":"0.2.0","sha":"388841a49f755635394ae2f3fd2a7a7c3bf6c202","kind":"commit","published_at":"2023-01-26T12:41:31.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-deploy-argocd/tar.gz/0.2.0","html_url":"https://github.com/cloudposse/github-action-deploy-argocd/releases/tag/0.2.0","dependencies_parsed_at":"2023-07-20T14:01:19.917Z","dependency_job_id":null,"purl":"pkg:github/cloudposse/github-action-deploy-argocd@0.2.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-deploy-argocd/tags/0.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-deploy-argocd/tags/0.2.0/manifests"},{"name":"0.1.0","sha":"ba49ce9bf26c08c30ecaaf61dcb33d216e7920f9","kind":"commit","published_at":"2023-01-20T08:59:19.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-deploy-argocd/tar.gz/0.1.0","html_url":"https://github.com/cloudposse/github-action-deploy-argocd/releases/tag/0.1.0","dependencies_parsed_at":"2023-07-20T14:01:15.549Z","dependency_job_id":null,"purl":"pkg:github/cloudposse/github-action-deploy-argocd@0.1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-deploy-argocd/tags/0.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-deploy-argocd/tags/0.1.0/manifests"}]},"repo_metadata_updated_at":"2026-02-11T14:05:50.253Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":1,"rankings":{"downloads":null,"dependent_repos_count":24.766281096498176,"dependent_packages_count":0.0,"stargazers_count":27.387101885596575,"forks_count":11.018855965774046,"docker_downloads_count":null,"average":15.7930597369672},"purl":"pkg:githubactions/cloudposse/github-action-deploy-argocd","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/cloudposse/github-action-deploy-argocd","docker_dependents_count":null,"docker_downloads_count":null,"usage_url":"https://repos.ecosyste.ms/usage/actions/cloudposse/github-action-deploy-argocd","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/cloudposse/github-action-deploy-argocd/dependencies","status":null,"funding_links":["https://github.com/sponsors/cloudposse"],"critical":null,"issue_metadata":{"last_synced_at":"2025-07-28T17:42:42.350Z","issues_count":1,"pull_requests_count":67,"avg_time_to_close_issue":null,"avg_time_to_close_pull_request":2190479.035714286,"issues_closed_count":0,"pull_requests_closed_count":56,"pull_request_authors_count":9,"issue_authors_count":1,"avg_comments_per_issue":0.0,"avg_comments_per_pull_request":0.23880597014925373,"merged_pull_requests_count":42,"bot_issues_count":1,"bot_pull_requests_count":20,"past_year_issues_count":0,"past_year_pull_requests_count":12,"past_year_avg_time_to_close_issue":null,"past_year_avg_time_to_close_pull_request":100206.72727272728,"past_year_issues_closed_count":0,"past_year_pull_requests_closed_count":11,"past_year_pull_request_authors_count":7,"past_year_issue_authors_count":0,"past_year_avg_comments_per_issue":null,"past_year_avg_comments_per_pull_request":0.8333333333333334,"past_year_bot_issues_count":0,"past_year_bot_pull_requests_count":1,"past_year_merged_pull_requests_count":10,"issues_url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-deploy-argocd/issues","maintainers":[{"login":"Benbentwo","count":14,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/Benbentwo"},{"login":"goruha","count":13,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/goruha"},{"login":"osterman","count":5,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/osterman"},{"login":"cloudpossebot","count":5,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/cloudpossebot"},{"login":"milldr","count":5,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/milldr"},{"login":"korenyoni","count":3,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/korenyoni"}],"active_maintainers":[{"login":"osterman","count":2,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/osterman"},{"login":"milldr","count":1,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/milldr"}]},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/cloudposse%2Fgithub-action-deploy-argocd/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/cloudposse%2Fgithub-action-deploy-argocd/version_numbers","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/cloudposse%2Fgithub-action-deploy-argocd/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/cloudposse%2Fgithub-action-deploy-argocd/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/cloudposse%2Fgithub-action-deploy-argocd/codemeta","maintainers":[]}