Add new FetchWithContext() API to ArchiveFetcher and option for downloading without extracting #1839
Workflow file for this run
This file contains 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: actions | |
on: | |
pull_request: | |
push: | |
paths: | |
- 'actions/**' | |
branches: | |
- main | |
permissions: read-all | |
jobs: | |
actions: | |
strategy: | |
fail-fast: false | |
matrix: | |
version: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.version }} | |
name: actions on ${{ matrix.version }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Setup yq | |
uses: ./actions/yq | |
- name: Setup kubeconform | |
uses: ./actions/kubeconform | |
- name: Setup envtest | |
uses: ./actions/envtest | |
- name: Setup helm | |
uses: ./actions/helm | |
- name: Setup kubectl | |
uses: ./actions/kubectl | |
- name: Setup kustomize | |
uses: ./actions/kustomize | |
- name: Setup sops | |
uses: ./actions/sops |