Skip to content

Commit cc3bba3

Browse files
committed
ci(CAT-2275): add Twingate setup step to GitHub Actions workflow
Adds the Twingate installation step in `.github/workflows/...` using `twingate/github-action@v1`. The action uses the `${{ secrets.TWINGATE_KEY }}` to establish secure access to internal resources. This enables the workflow to access protected infrastructure during CI runs.
1 parent 4dee504 commit cc3bba3

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/module_acceptance.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,13 @@ jobs:
7575
BUNDLE_WITHOUT: release_prep
7676
PUPPET_GEM_VERSION: '~> 8.9'
7777
FACTER_GEM_VERSION: 'https://github.com/puppetlabs/facter#main' # why is this set?
78+
TWINGATE_PUBLIC_REPO_KEY: ${{ secrets.TWINGATE_PUBLIC_REPO_KEY }}
7879

7980
steps:
81+
- name: "Install Twingate"
82+
uses: "twingate/github-action@v1"
83+
with:
84+
service-key: ${{ env.TWINGATE_PUBLIC_REPO_KEY }}
8085

8186
- name: "Checkout"
8287
uses: "actions/checkout@v4"

0 commit comments

Comments
 (0)