{"id":47641627,"url":"https://github.com/actungs/container-structure-test-action","last_synced_at":"2026-04-14T08:00:55.931Z","repository":{"id":216181982,"uuid":"739557278","full_name":"actungs/container-structure-test-action","owner":"actungs","description":"An action to setup the container-structure-test executable.","archived":false,"fork":false,"pushed_at":"2026-04-13T05:37:56.000Z","size":29,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-04-13T07:25:12.829Z","etag":null,"topics":["composite-action","container-structure-test","github-actions"],"latest_commit_sha":null,"homepage":"https://github.com/marketplace/actions/container-structure-test-composite-action","language":null,"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/actungs.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":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-01-05T21:26:23.000Z","updated_at":"2026-04-13T05:38:03.000Z","dependencies_parsed_at":"2024-01-18T07:55:23.868Z","dependency_job_id":"b24d1676-0e9e-400f-bd41-3e23ce6d8de2","html_url":"https://github.com/actungs/container-structure-test-action","commit_stats":null,"previous_names":["actungs/container-structure-test-action"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/actungs/container-structure-test-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/actungs%2Fcontainer-structure-test-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/actungs%2Fcontainer-structure-test-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/actungs%2Fcontainer-structure-test-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/actungs%2Fcontainer-structure-test-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/actungs","download_url":"https://codeload.github.com/actungs/container-structure-test-action/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/actungs%2Fcontainer-structure-test-action/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31787263,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T02:24:21.117Z","status":"ssl_error","status_checked_at":"2026-04-14T02:24:20.627Z","response_time":153,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["composite-action","container-structure-test","github-actions"],"created_at":"2026-04-02T00:59:10.004Z","updated_at":"2026-04-14T08:00:55.925Z","avatar_url":"https://github.com/actungs.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Container Structure Test Action\n\nAn action to setup, cache and run the [GoogleContainerTools/container-structure-test](https://github.com/GoogleContainerTools/container-structure-test) executable.\n\n[actions/cache](https://github.com/actions/cache) is used to cache the executable under `\u003cOS name\u003e-container-structure-test`.\n\nThe cache should be deleted if the executable should be re-installed.\n\n\u003e [!NOTE]\n\u003e Currently this action only supports Linux and macOS GitHub runners.\n\n## Usage\n\n```yaml\n- uses: actungs/container-structure-test-action@v1\n  with:\n    # The full docker image tag to be verified.\n    #\n    # Required.\n    image: ''\n\n    # The path to the container structure configuration files.\n    #\n    # Required.\n    config_files: ''\n\n    # The version of container-structure-test to be installed.\n    # See the key property in https://storage.googleapis.com/container-structure-test for available versions.\n    #\n    # Default: 'latest'\n    version: ''\n\n    # The path to where the executable will be installed to.\n    #\n    # Default: '.bin'\n    install_path: ''\n\n    # Set to 'false' if color should be used in the output.\n    #\n    # Default: 'true'\n    no_color: ''\n\n    # Set to 'true' to force a pull of the image before running the tests.\n    #\n    # Default: 'false'\n    pull_image: ''\n\n    # The output format for the test report. Available format: text, json, junit.\n    #\n    # Default: 'text'\n    output_format: ''\n\n    # Write the test report to the specified file. Supported file types are json and junit.\n    # Set the `output_format` accordingly.\n    # If the `output_format` does not match the given file type, then `json` will be used instead.\n    #\n    # Default: ''\n    report_file: ''\n```\n\n## Example\n\nA simplified example, on how this action can be utilized, could look like this.\n\n```yaml\n\"on\": [push]\n\njobs:\n  build:\n    runs-on: ubuntu-latest\n    steps:\n      # Build the container image\n      # ...\n      # Run the container test, assuming the image is 'actungs/test-image:local' and the configuration file is 'config.yaml'.\n      - uses: actungs/container-structure-test-action@v1\n        with:\n          image: actungs/test-image:local\n          config_files: config.yaml\n```\n\n## License\n\nThis project is released under the [MIT License](./LICENSE).\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Factungs%2Fcontainer-structure-test-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Factungs%2Fcontainer-structure-test-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Factungs%2Fcontainer-structure-test-action/lists"}