{"id":18952287,"url":"https://github.com/step-security/change-string-case-action","last_synced_at":"2025-07-30T13:34:29.826Z","repository":{"id":210477117,"uuid":"726644171","full_name":"step-security/change-string-case-action","owner":"step-security","description":"Github Action: Make a string lowercase, uppercase, or capitalized. Secure drop-in replacement for ASzc/change-string-case-action.","archived":false,"fork":false,"pushed_at":"2025-07-28T00:19:21.000Z","size":1675,"stargazers_count":0,"open_issues_count":11,"forks_count":3,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-28T02:28:07.464Z","etag":null,"topics":["step-security-maintained-actions"],"latest_commit_sha":null,"homepage":"https://docs.stepsecurity.io/actions/stepsecurity-maintained-actions","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"isc","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/step-security.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":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2023-12-03T00:03:43.000Z","updated_at":"2025-06-14T16:37:30.000Z","dependencies_parsed_at":null,"dependency_job_id":"ca721343-b879-4f87-a29f-9745607e4f02","html_url":"https://github.com/step-security/change-string-case-action","commit_stats":null,"previous_names":["step-security/change-string-case-action"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/step-security/change-string-case-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/step-security%2Fchange-string-case-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/step-security%2Fchange-string-case-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/step-security%2Fchange-string-case-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/step-security%2Fchange-string-case-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/step-security","download_url":"https://codeload.github.com/step-security/change-string-case-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/step-security%2Fchange-string-case-action/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267875747,"owners_count":24158781,"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-07-30T02:00:09.044Z","response_time":70,"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"}},"keywords":["step-security-maintained-actions"],"created_at":"2024-11-08T13:32:36.328Z","updated_at":"2025-07-30T13:34:29.792Z","avatar_url":"https://github.com/step-security.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# StepSecurity Maintained `Change String Case` Action\n\nForked from [ASzc/change-string-case-action](https://github.com/ASzc/change-string-case-action)\n\nThis Action accepts any string, and outputs three different versions of that string:\n\n- lowercase (`XyZzY` -\u003e `xyzzy`)\n- uppercase (`XyZzY` -\u003e `XYZZY`)\n- capitalized (`Xyzzy` -\u003e `Xyzzy`)\n\nYou can access the outputted strings through the job outputs context. See docs [here](https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjobs_idoutputs), or the Example Usage section below.\n\n## Inputs\n\n### `string`\n\n**Required** The string you want manipulated\n\n## Outputs\n\n### `lowercase`\n\n`inputStr.toLowerCase()`\n\nExample: `XyZzY` -\u003e `xyzzy`\n\n### `uppercase`\n\n`inputStr.toUpperCase()`\n\nExample: `XyZzY` -\u003e `XYZZY`\n\n### `capitalized`\n\n`inputStr.charAt(0).toUpperCase() + inputStr.slice(1).toLowerCase()`\n\nExample: `XyZzY` -\u003e `Xyzzy`\n\n## Example Usage\n\n```yaml\nname: SomeWorkflow\non: [push]\njobs:\n  build:\n    name: Build\n    runs-on: ubuntu-latest\n    steps:\n      - id: string\n        uses: step-security/change-string-case-action@v6\n        with:\n          string: XyZzY\n      - id: step2\n        run: echo ${{ steps.string.outputs.lowercase }}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstep-security%2Fchange-string-case-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstep-security%2Fchange-string-case-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstep-security%2Fchange-string-case-action/lists"}