{"id":13534070,"url":"https://github.com/fabasoad/setup-cobol-action","last_synced_at":"2025-06-22T13:08:12.127Z","repository":{"id":42535407,"uuid":"256084495","full_name":"fabasoad/setup-cobol-action","owner":"fabasoad","description":"This action installs GnuCOBOL.","archived":false,"fork":false,"pushed_at":"2025-06-09T22:03:42.000Z","size":827,"stargazers_count":16,"open_issues_count":0,"forks_count":6,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-06-09T23:19:32.836Z","etag":null,"topics":["cobol","github-action","github-actions","gnucobol"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fabasoad.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"custom":["https://www.bitcoinqrcodemaker.com/?style=bitcoin\u0026address=145HwyQAcv4vrzUumJhu7nWGAVBysX9jJH\u0026prefix=on","https://paypal.me/fabasoad"],"github":["fabasoad"],"ko_fi":"fabasoad","liberapay":"fabasoad"}},"created_at":"2020-04-16T02:03:23.000Z","updated_at":"2025-06-09T22:03:45.000Z","dependencies_parsed_at":"2024-01-06T13:08:47.082Z","dependency_job_id":"7ff8c79c-386a-4377-bca8-eb44f772d989","html_url":"https://github.com/fabasoad/setup-cobol-action","commit_stats":{"total_commits":142,"total_committers":6,"mean_commits":"23.666666666666668","dds":0.6056338028169015,"last_synced_commit":"5ad4d096b8a5af2521d14d724d26dd3821501596"},"previous_names":[],"tags_count":31,"template":false,"template_full_name":null,"purl":"pkg:github/fabasoad/setup-cobol-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabasoad%2Fsetup-cobol-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabasoad%2Fsetup-cobol-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabasoad%2Fsetup-cobol-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabasoad%2Fsetup-cobol-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fabasoad","download_url":"https://codeload.github.com/fabasoad/setup-cobol-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabasoad%2Fsetup-cobol-action/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261296937,"owners_count":23137220,"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","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":["cobol","github-action","github-actions","gnucobol"],"created_at":"2024-08-01T07:01:26.052Z","updated_at":"2025-06-22T13:08:07.096Z","avatar_url":"https://github.com/fabasoad.png","language":"Shell","funding_links":["https://www.bitcoinqrcodemaker.com/?style=bitcoin\u0026address=145HwyQAcv4vrzUumJhu7nWGAVBysX9jJH\u0026prefix=on","https://paypal.me/fabasoad","https://github.com/sponsors/fabasoad","https://ko-fi.com/fabasoad","https://liberapay.com/fabasoad"],"categories":["Community Resources"],"sub_categories":["Build"],"readme":"# Setup COBOL (GnuCOBOL)\n\n[![Stand With Ukraine](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/badges/StandWithUkraine.svg)](https://stand-with-ukraine.pp.ua)\n![GitHub release](https://img.shields.io/github/v/release/fabasoad/setup-cobol-action?include_prereleases)\n![functional-tests](https://github.com/fabasoad/setup-cobol-action/actions/workflows/functional-tests.yml/badge.svg)\n![security](https://github.com/fabasoad/setup-cobol-action/actions/workflows/security.yml/badge.svg)\n![linting](https://github.com/fabasoad/setup-cobol-action/actions/workflows/linting.yml/badge.svg)\n\nThis action sets up a [GnuCOBOL](https://en.wikipedia.org/wiki/COBOL) programming\nlanguage.\n\n## Supported OS\n\n\u003c!-- prettier-ignore-start --\u003e\n| OS      |                    |\n|---------|--------------------|\n| Windows | :x:                |\n| Linux   | :white_check_mark: |\n| macOS   | :x:                |\n\u003c!-- prettier-ignore-end --\u003e\n\n## Inputs\n\n```yaml\n- uses: fabasoad/setup-cobol-action@v1\n  with:\n    # (Optional) GnuCOBOL version. Defaults to 3.2.\n    version: \"3.2\"\n    # (Optional) If \"true\" it installs cobc even if it is already installed on a\n    # runner. Otherwise, skips installation.\n    force: \"false\"\n```\n\n## Outputs\n\n\u003c!-- prettier-ignore-start --\u003e\n| Name      | Description                       | Example |\n|-----------|-----------------------------------|---------|\n| installed | Whether cobc was installed or not | `true`  |\n\u003c!-- prettier-ignore-end --\u003e\n\n## Example usage\n\n### Workflow configuration\n\n```yaml\nname: Setup COBOL\n\non: push\n\njobs:\n  setup:\n    name: Setup\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v4\n      - uses: fabasoad/setup-cobol-action@v1\n      - name: Run script\n        run: |\n          cobc -x HelloWorld.cob\n          ./HelloWorld\n```\n\n### Result\n\n```text\nRun cobc -x HelloWorld.cob\nHello World!\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffabasoad%2Fsetup-cobol-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffabasoad%2Fsetup-cobol-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffabasoad%2Fsetup-cobol-action/lists"}