Bump golang.org/x/crypto from 0.0.0-20221010152910-d6f0a8c073c2 to 0.17.0 in /tests #53
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
# This confirms that the repo is properly validated according | |
# to the information located in README-HEADER.md | |
name: Validate | |
on: | |
pull_request: | |
# Run tests when PRs opened or updated | |
types: [opened, synchronize] | |
branches: | |
- main | |
concurrency: validate-${{ github.base_ref }} | |
jobs: | |
validate: | |
name: "Validate" | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@main | |
- name: Setup rtx | |
uses: jdx/rtx-action@v1 | |
- name: "Validate Module" | |
run: ./scripts/validate.sh |