From c5f047c9b844cfeec139a8450004e09513c1093a Mon Sep 17 00:00:00 2001 From: Bo-Yi Wu Date: Sun, 21 Jan 2024 09:49:18 +0800 Subject: [PATCH] ci: enhance GitHub Actions with Protocol Configs - Add a new GitHub Actions job `testing06` for testing in IPv6 environment with specific steps and parameters - Introduce `protocol` input for the GitHub Action with a description of valid values and default setting - Introduce `proxy_protocol` input for the GitHub Action with a description of valid values and default setting Signed-off-by: Bo-Yi Wu --- .github/workflows/ci.yml | 22 ++++++++++++++++++++++ action.yml | 4 ++++ 2 files changed, 26 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b676e5f..e2e43a3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -282,3 +282,25 @@ jobs: script: | whoami && echo 'hello world' && touch todo.txt sudo whoami + + testing06: + name: ipv6 + runs-on: ubuntu-latest + steps: + - name: checkout + uses: actions/checkout@v1 + + - name: testing in ipv6 + uses: ./ + with: + host: "fe80::6c:d6ff:fe09:79d4" + username: ${{ secrets.USERNAME }} + key: ${{ secrets.KEY }} + port: ${{ secrets.PORT }} + protocol: "tcp6" + script_stop: true + request_pty: true + command_timeout: 30s + script: | + whoami && echo 'hello world' && touch todo.txt + sudo whoami diff --git a/action.yml b/action.yml index 2d1067e..d8d0a6c 100644 --- a/action.yml +++ b/action.yml @@ -13,6 +13,8 @@ inputs: description: "SSH username." password: description: "SSH password." + protocol: + description: 'The IP protocol to use. Valid values are "tcp", "tcp4" or "tcp6". Default to tcp.' sync: description: "Enable synchronous execution if multiple hosts are involved." use_insecure_cipher: @@ -40,6 +42,8 @@ inputs: description: "SSH proxy username." proxy_password: description: "SSH proxy password." + proxy_protocol: + description: 'The IP protocol to use. Valid values are "tcp", "tcp4" or "tcp6". Default to tcp.' proxy_passphrase: description: "SSH proxy key passphrase." proxy_timeout: