chore(deps): bump golang.org/x/crypto from 0.27.0 to 0.31.0 #145
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: testing | |
"on": | |
pull_request: | |
branches: | |
- master | |
permissions: | |
contents: read | |
jobs: | |
testing: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source | |
id: source | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup gnupg | |
id: gnupg | |
uses: crazy-max/ghaction-import-gpg@v6 | |
with: | |
gpg_private_key: ${{ secrets.GNUPG_KEY }} | |
passphrase: ${{ secrets.GNUPG_PASSWORD }} | |
trust_level: 5 | |
- name: Setup python | |
id: python | |
uses: actions/setup-python@v5 | |
with: | |
python-version-file: .python-version | |
- name: Setup sops | |
uses: nhedger/setup-sops@v2 | |
- name: Setup testing | |
id: setup | |
uses: helm/[email protected] | |
- name: Setup helm | |
id: helm | |
uses: azure/setup-helm@v4 | |
- name: Helm plugins | |
id: plugins | |
run: | | |
helm plugin install https://github.com/jkroepke/helm-secrets | |
- name: Decrypt secrets | |
id: secrets | |
run: | | |
for FILE in $(find stable -iname \*.enc); do | |
helm secrets decrypt ${FILE} >| ${FILE%.enc}.yaml | |
echo >> ${FILE%.enc}.yaml | |
done | |
- name: Detect testing | |
id: detect | |
run: | | |
CHANGED=$(ct list-changed --config ct.yaml) | |
if [[ -n "${CHANGED}" ]]; then | |
echo "changed=true" >> "${GITHUB_OUTPUT}" | |
fi | |
- name: Run Linting | |
id: linting | |
if: steps.detect.outputs.changed == 'true' | |
run: | | |
ct lint --config ct.yaml | |
- name: Create kind | |
id: kind | |
if: steps.detect.outputs.changed == 'true' | |
uses: helm/[email protected] | |
- name: Run testing | |
id: testing | |
if: steps.detect.outputs.changed == 'true' | |
run: | | |
ct install --config ct.yaml | |
... |