Bump the actions group in /.github/workflows with 2 updates (#222) #388
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Integration test for setup-kubectl | |
| on: # rebuild any PRs and main branch changes | |
| pull_request: | |
| branches: | |
| - main | |
| - 'releases/*' | |
| push: | |
| branches: | |
| - main | |
| - 'releases/*' | |
| jobs: | |
| run-integration-test: | |
| name: Validate release and master branch | |
| runs-on: ubuntu-latest | |
| env: | |
| KUBECONFIG: /home/runner/.kube/config | |
| PR_BASE_REF: ${{ github.event.pull_request.base.ref }} | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| name: Checkout from PR branch | |
| - id: action-npm-build | |
| name: npm install and build | |
| run: | | |
| echo $PR_BASE_REF | |
| if [[ $PR_BASE_REF != releases/* ]]; then | |
| npm install | |
| npm run build | |
| # remove node_modules to match production environment where only index.js is present | |
| rm -rf node_modules | |
| fi | |
| - uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0 | |
| name: Install Python | |
| with: | |
| python-version: '3.x' | |
| - name: Install requests library | |
| run: pip install requests | |
| - name: Setup kubectl latest | |
| uses: ./ | |
| with: | |
| version: 'latest' | |
| - name: Validate kubectl setup | |
| run: python test/validate-kubectl.py latest | |
| - name: Setup kubectl old version | |
| uses: ./ | |
| with: | |
| version: 'v1.15.1' | |
| - name: Validate kubectl setup old version | |
| run: python test/validate-kubectl.py 'v1.15.1' |