chore(deps): update all non-major github action dependencies #3125
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: Testing manifest | |
on: | |
- pull_request | |
env: | |
KUBECTL_VERSION: 1.23.6 | |
jobs: | |
testing_manifest: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 | |
- name: Install kubectl | |
run: | | |
curl -LO https://dl.k8s.io/release/v$KUBECTL_VERSION/bin/linux/amd64/kubectl | |
chmod +x kubectl | |
mv kubectl /usr/local/bin/ | |
kubectl version --client | |
- name: Add fake .env | |
run: | | |
cp env.example env/staging/.env | |
cp env.example env/production/.env | |
- name: Test staging manifest build | |
uses: ./.github/actions/test-manifest | |
if: always() | |
with: | |
build-target: staging-debug | |
echo-manifest: true | |
- name: Test production manifest build | |
uses: ./.github/actions/test-manifest | |
if: always() | |
with: | |
build-target: production-debug | |