Skip to content

Commit

Permalink
feat: added support for IPv6 in GitHub Actions
Browse files Browse the repository at this point in the history
Recently we submitted a PR for adding `ipv6: true` to the yaml config to check IPv6.  However GitHub actions does not yet support IPv6 unfortunately.  This PR is necessary as it uses Cloudflare WARP network configuration on the runner to add IPv6 support.  See <actions/runner-images#668 (comment)> for more insight.
  • Loading branch information
titanism committed Jan 7, 2024
1 parent 04ae953 commit 438371b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/response-time.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ jobs:
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.GH_PAT || github.token }}
# This is necessary because GitHub Actions does not support IPv6 yet
# And if a user has `ipv6: true` set in their yaml config, it wouldn't work otherwise
# <https://github.com/actions/runner-images/issues/668#issuecomment-1872487355>
- name: Setup WARP
uses: fscarmen/warp-on-actions@v2
- name: Update response time
uses: upptime/uptime-monitor@v1.35.0
with:
Expand Down

0 comments on commit 438371b

Please sign in to comment.