{"id":18668170,"url":"https://github.com/eonx-com/setup-wireguard","last_synced_at":"2026-03-19T05:44:27.184Z","repository":{"id":59433790,"uuid":"537263842","full_name":"eonx-com/setup-wireguard","owner":"eonx-com","description":null,"archived":false,"fork":false,"pushed_at":"2023-05-18T20:33:45.000Z","size":5,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":4,"default_branch":"release","last_synced_at":"2025-05-18T07:38:59.604Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/eonx-com.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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":"2022-09-16T01:29:29.000Z","updated_at":"2022-09-16T01:38:27.000Z","dependencies_parsed_at":"2024-11-07T08:42:20.722Z","dependency_job_id":"36fa5bf8-5541-415a-8fa0-34d152441d6b","html_url":"https://github.com/eonx-com/setup-wireguard","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/eonx-com/setup-wireguard","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eonx-com%2Fsetup-wireguard","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eonx-com%2Fsetup-wireguard/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eonx-com%2Fsetup-wireguard/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eonx-com%2Fsetup-wireguard/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eonx-com","download_url":"https://codeload.github.com/eonx-com/setup-wireguard/tar.gz/refs/heads/release","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eonx-com%2Fsetup-wireguard/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28758927,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-25T20:56:06.009Z","status":"ssl_error","status_checked_at":"2026-01-25T20:54:48.203Z","response_time":113,"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":[],"created_at":"2024-11-07T08:41:44.003Z","updated_at":"2026-01-25T21:21:21.472Z","avatar_url":"https://github.com/eonx-com.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"Set up WireGuard\n================\n\n[![Test](https://github.com/egor-tensin/setup-wireguard/actions/workflows/test.yml/badge.svg)](https://github.com/egor-tensin/setup-wireguard/actions/workflows/test.yml)\n\nThis GitHub action sets up a WireGuard connection in your workflow run.\n\n1. Installs WireGuard if it's missing.\n2. Sets up a connection using the provided credentials.\n\nUse it your workflow like this:\n\n    - name: Set up WireGuard\n      uses: egor-tensin/setup-wireguard@v1\n      with:\n        endpoint: 46.46.46.46:51820\n        endpoint_public_key: 9IHlvJqgkVWMq57a0A56XI5IjhnL5gaRhI1Pszk7S24=\n        ips: 192.168.143.254/24,fd8c:bc10:5021::192.168.143.254/48\n        allowed_ips: 192.168.143.0/24,fd8c:bc10:5021::/48\n        private_key: GLEiXhRwFuhw8aPy+HQfSMwwoLU0Sw8jE8MOxZ8GV3w=\n        preshared_key: PWAfvVWCjiNV0Uh2DhmXhdRaT326qosSOcaDB3j9dwI=\n\nOf couse it's highly advised to store all sensitive data in your repository's\nsecrets.\nIt could then become something like:\n\n    - name: Set up WireGuard\n      uses: egor-tensin/setup-wireguard@v1\n      with:\n        endpoint: '${{ secrets.ENDPOINT }}'\n        endpoint_public_key: '${{ secrets.ENDPOINT_PUBLIC }}'\n        ips: '${{ secrets.IPS }}'\n        allowed_ips: '${{ secrets.ALLOWED_IPS }}'\n        private_key: '${{ secrets.PRIVATE }}'\n        preshared_key: '${{ secrets.PRESHARED }}'\n\nAPI\n---\n\n| Input               | Example                                               | Description\n| ------------------- | ----------------------------------------------------- | -----------\n| endpoint            | 46.46.46.46:51820                                     | Endpoint to connect to in the HOST:PORT format.\n| endpoint_public_key | 9IHlvJqgkVWMq57a0A56XI5IjhnL5gaRhI1Pszk7S24=          | Endpoint's public key.\n| ips                 | 192.168.143.254/24,fd8c:bc10:5021::192.168.143.254/48 | Comma-separated list of IP addresses to assign to the VM.\n| allowed_ips         | 192.168.143.0/24,fd8c:bc10:5021::/48                  | Comma-separated list of netmasks.\n| private_key         | GLEiXhRwFuhw8aPy+HQfSMwwoLU0Sw8jE8MOxZ8GV3w=          | Private key of the VM.\n| preshared_key       | PWAfvVWCjiNV0Uh2DhmXhdRaT326qosSOcaDB3j9dwI=          | Preshared key assigned to the VM.\n\nLicense\n-------\n\nDistributed under the MIT License.\nSee [LICENSE.txt] for details.\n\n[LICENSE.txt]: LICENSE.txt\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feonx-com%2Fsetup-wireguard","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feonx-com%2Fsetup-wireguard","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feonx-com%2Fsetup-wireguard/lists"}