mirror of
https://github.com/coder/coder.git
synced 2026-06-04 21:48:22 +00:00
57a65c15bf
Use specific commit SHAs for GitHub actions across various workflows to enhance reliability and reproducibility. This change ensures that actions run against a known version, reducing the risk of unexpected issues due to updates in the third-party action repositories. This contributes to improving the score in #14879
21 lines
479 B
YAML
21 lines
479 B
YAML
name: release-validation
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- "v*"
|
|
|
|
jobs:
|
|
network-performance:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Run Schmoder CI
|
|
uses: benc-uk/workflow-dispatch@e2e5e9a103e331dad343f381a29e654aea3cf8fc # v1.2.4
|
|
with:
|
|
workflow: ci.yaml
|
|
repo: coder/schmoder
|
|
inputs: '{ "num_releases": "3", "commit": "${{ github.sha }}" }'
|
|
token: ${{ secrets.CDRCI_SCHMODER_ACTIONS_TOKEN }}
|
|
ref: main
|