chore(deps): update all non-major github action dependencies #4130
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 Staging Manifest | |
on: | |
- pull_request | |
jobs: | |
testing_manifest: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 | |
# I'm cheating and using this action to install kubectl | |
- name: Setup helmfile | |
uses: mamezou-tech/setup-helmfile@03233e1cd9b19b2ba320e431f7bcc0618db4248d # v2.0.0 | |
with: | |
install-kubectl: yes | |
install-helm: yes | |
- name: Add fake .env | |
run: | | |
cp env.example env/staging/.env | |
- name: Test staging manifest build | |
uses: ./.github/actions/test-manifest | |
if: always() | |
with: | |
build-target: staging-debug | |
echo-manifest: true |