chore: bump softprops/action-gh-release from 2.0.8 to 2.0.9 #90
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: Repository Validation | |
on: | |
push: | |
branches-ignore: | |
- 'dependabot/**' | |
paths-ignore: | |
- '**/*.md' | |
- '**/*.cff' | |
pull_request: | |
branches: | |
- '**' | |
paths-ignore: | |
- '**/*.md' | |
- '**/*.cff' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: read-all | |
jobs: | |
get-go-version: | |
name: Get Latest Go Version | |
runs-on: ubuntu-latest | |
outputs: | |
version: ${{ steps.get-language-versions.outputs.latest-versions }} | |
steps: | |
- name: Get Required Versions | |
uses: ActionsToolbox/get-language-versions-action@446919617fd774095b5dd3ed71c39dd3fd0d8f4f # V0.1.3 | |
id: get-language-versions | |
with: | |
language: "go" | |
highest-only: true | |
remove-patch-version: true | |
get-python-version: | |
name: Get Latest Python Version | |
runs-on: ubuntu-latest | |
outputs: | |
version: ${{ steps.get-language-versions.outputs.latest-versions }} | |
steps: | |
- name: Get Required Versions | |
uses: ActionsToolbox/get-language-versions-action@446919617fd774095b5dd3ed71c39dd3fd0d8f4f # V0.1.3 | |
id: get-language-versions | |
with: | |
language: "python" | |
highest-only: true | |
remove-patch-version: true | |
action-lint: | |
name: Action Lint | |
needs: get-go-version | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the Repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # V4.2.2 | |
- name: Setup Go ${{ needs.get-go-version.outputs.version }} | |
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # V5.1.0 | |
with: | |
go-version: ${{ needs.get-go-version.outputs.version }} | |
- name: Perform Action Lint Analysis | |
run: bash <(curl -s https://raw.githubusercontent.com/CICDToolbox/action-lint/master/pipeline.sh) | |
yaml-lint: | |
name: YAML Lint | |
needs: get-python-version | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the Repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # V4.2.2 | |
- name: Set up Python ${{ needs.get-python-version.outputs.version }} | |
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # V5.3.0 | |
with: | |
python-version: ${{ needs.get-python-version.outputs.version }} | |
- name: Perform YAML Lint Analysis | |
run: bash <(curl -s https://raw.githubusercontent.com/CICDToolbox/yaml-lint/master/pipeline.sh) | |
repository-validation-pipeline: | |
if: always() | |
name: Repository Validation Pipeline | |
needs: | |
- action-lint | |
- yaml-lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the Repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # V4.2.2 | |
- name: Check Job Statuses | |
run: .github/scripts/check-jobs.sh '${{ toJson(needs) }}' |