# get-istioctl **Repository Path**: x-istio/get-istioctl ## Basic Information - **Project Name**: get-istioctl - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-07-24 - **Last Updated**: 2023-08-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # get-istioctl This action returns the latest version of istioctl matching your input semver range, operating system, and architecture. It returns the version components of the selected version, as well as the url at which the binary may be downloaded directly. ## Usage ``` - uses: ./.github/actions/get-istioctl id: getit with: version: "1.11.*" - name: Get the output time run: | echo "Selected version ${{ steps.getit.outputs.version }}" echo "patch version ${{ steps.getit.outputs.patch }}" echo "download link ${{ steps.getit.outputs.istioctl-url }}" ```