{"id":18995629,"url":"https://github.com/turbot/flowpipe-action-setup","last_synced_at":"2026-05-16T09:33:19.692Z","repository":{"id":217736268,"uuid":"740683115","full_name":"turbot/flowpipe-action-setup","owner":"turbot","description":"Set up your GitHub Actions workflow with Flowpipe and credentials","archived":false,"fork":false,"pushed_at":"2024-05-06T03:31:43.000Z","size":305,"stargazers_count":1,"open_issues_count":3,"forks_count":0,"subscribers_count":5,"default_branch":"main","last_synced_at":"2025-02-21T12:18:19.171Z","etag":null,"topics":["flowpipe","github-actions"],"latest_commit_sha":null,"homepage":"https://flowpipe.io","language":"JavaScript","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/turbot.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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}},"created_at":"2024-01-08T21:09:14.000Z","updated_at":"2024-01-18T20:43:31.000Z","dependencies_parsed_at":"2024-02-08T23:58:53.051Z","dependency_job_id":"91b63f7a-8547-4aa6-be75-69da3f0d00e1","html_url":"https://github.com/turbot/flowpipe-action-setup","commit_stats":null,"previous_names":["turbot/flowpipe-action-setup"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/turbot/flowpipe-action-setup","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/turbot%2Fflowpipe-action-setup","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/turbot%2Fflowpipe-action-setup/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/turbot%2Fflowpipe-action-setup/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/turbot%2Fflowpipe-action-setup/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/turbot","download_url":"https://codeload.github.com/turbot/flowpipe-action-setup/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/turbot%2Fflowpipe-action-setup/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33096898,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-16T04:41:52.686Z","status":"ssl_error","status_checked_at":"2026-05-16T04:41:52.009Z","response_time":115,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["flowpipe","github-actions"],"created_at":"2024-11-08T17:32:09.749Z","updated_at":"2026-05-16T09:33:19.674Z","avatar_url":"https://github.com/turbot.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Setup Flowpipe for GitHub Actions\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://github.com/turbot/flowpipe-action-setup/actions\"\u003e\u003cimg alt=\"flowpipe-action status\" src=\"https://github.com/turbot/flowpipe-action-setup/workflows/units-test/badge.svg\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\nThis action installs [Flowpipe](https://github.com/turbot/flowpipe/) and optionally configures Flowpipe credentials.\n\n## Usage\n\nSee [action.yml](action.yml).\n\n## Examples\n\n### Install the latest version Flowpipe\n\n```yaml\n- name: Install Flowpipe\n  uses: turbot/flowpipe-action-setup@v1\n```\n\n### Install a specific version of Flowpipe\n\n```yaml\n- name: Install Flowpipe v0.19.4\n  uses: turbot/flowpipe-action-setup@v1\n  with:\n    flowpipe-version: 0.19.4\n```\n\n### Configure multiple AWS credentials\n\n```yaml\n- name: Setup Flowpipe\n  uses: turbot/flowpipe-action-setup@v1\n  with:\n    flowpipe-config: |\n      credential \"aws\" \"aws_prod\" {\n        access_key = \"${{ secrets.AWS_ACCESS_KEY }}\"\n        secret_key = \"${{ secrets.AWS_SECRET_ACCESS_KEY }}\"\n      }\n\n      credential \"aws\" \"aws_dev\" {\n        access_key    = \"${{ secrets.DEV_AWS_ACCESS_KEY }}\"\n        secret_key    = \"${{ secrets.DEV_AWS_SECRET_ACCESS_KEY }}\"\n        session_token = \"${{ secrets.DEV_AWS_SESSION_TOKEN }}\"\n      }\n```\n\n\u003e For further information on credentials refer to [Managing Credentials](https://flowpipe.io/docs/run/credentials) or for available Flowpipe versions refer to [Flowpipe Releases](https://github.com/turbot/flowpipe/releases).\n\n### Run a Flowpipe Github Mod pipeline\n\n```yaml\nsteps:\n  - uses: actions/checkout@v3\n  - name: Setup Flowpipe\n    uses: turbot/flowpipe-action-setup@main\n    with:\n      flowpipe-version: 'latest'\n      flowpipe-config: |\n        credential \"github\" \"default\" {\n          token = \"${{ secrets.GH_TOKEN }}\"\n        }\n  - name: Install mod and run pipeline\n    run: |\n        mkdir pipelines\n        cd pipelines\n        flowpipe mod install github.com/turbot/flowpipe-mod-github\n        flowpipe pipeline run github.pipeline.search_repositories --arg 'search_value=owner:turbot'\n```\n\nPipeline that searches for GitHub repositories owned by 'turbot', extracting information such as creation date and popularity metrics.\n\n## Helpful Links\n\n- [Flowpipe docs](https://flowpipe.io/docs)\n- [Flowpipe mods](https://hub.flowpipe.io/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fturbot%2Fflowpipe-action-setup","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fturbot%2Fflowpipe-action-setup","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fturbot%2Fflowpipe-action-setup/lists"}