Skip to content

Commit 79af28d

Browse files
committed
ci(MODULES-11557): 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 c34311e commit 79af28d

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,11 @@ jobs:
5757
FACTER_GEM_VERSION: 'https://github.com/puppetlabs/facter#main'
5858

5959
steps:
60+
- name: "Install Twingate"
61+
uses: "twingate/github-action@v1"
62+
with:
63+
service-key: ${{ secrets.TWINGATE_PUBLIC_REPO_KEY }}
64+
6065
- name: Checkout Source
6166
uses: actions/checkout@v3
6267

.github/workflows/nightly.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,11 @@ jobs:
5656
FACTER_GEM_VERSION: 'https://github.com/puppetlabs/facter#main'
5757

5858
steps:
59+
- name: "Install Twingate"
60+
uses: "twingate/github-action@v1"
61+
with:
62+
service-key: ${{ secrets.TWINGATE_PUBLIC_REPO_KEY }}
63+
5964
- name: Checkout Source
6065
uses: actions/checkout@v3
6166

0 commit comments

Comments
 (0)