[deps]: Update typescript to v5 #12
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: Workflow Linter | |
on: | |
pull_request: | |
paths: | |
- .github/workflows/** | |
workflow_call: {} | |
workflow_dispatch: {} | |
jobs: | |
lint: | |
name: "Workflow Linter" | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Get Repository | |
id: repo | |
env: | |
REPO: ${{ github.repository }} | |
run: | | |
echo $REPO | |
echo "repo=$REPO" >> $GITHUB_OUTPUT | |
- name: Checkout Branch | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
with: | |
repository: ${{ steps.repo.outputs.repo }} | |
fetch-depth: 0 | |
- name: Get changed workflows | |
id: changed-workflows | |
run: | | |
MODIFIED_WORKFLOWS=$(git diff --name-only origin/${{ github.base_ref }} | grep -E '.github/workflows/.*.(yml|yaml)' | tr '\n' ' ') | |
MODIFIED_EXISTING_WORKFLOWS="" | |
COUNT=0 | |
for workflow in $MODIFIED_WORKFLOWS; do | |
if [ -f $workflow ]; then | |
MODIFIED_EXISTING_WORKFLOWS+=" ${workflow}" | |
COUNT=$((COUNT+1)) | |
fi | |
done | |
echo "count=$COUNT" >> $GITHUB_OUTPUT | |
echo "modified-workflows=$MODIFIED_EXISTING_WORKFLOWS" >> $GITHUB_OUTPUT | |
- name: Workflow Lint | |
if: steps.changed-workflows.outputs.count != 0 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
uses: bitwarden/gh-actions/lint-workflow@main | |
with: | |
workflows: ${{ steps.changed-workflows.outputs.modified-workflows }} | |
- name: Get changed files | |
if: steps.changed-workflows.outputs.count != 0 | |
id: changed-files | |
uses: tj-actions/changed-files@3f54ebb830831fc121d3263c1857cfbdc310cdb9 # v42.0.4 | |
with: | |
files: .github/workflows/** | |
- name: Check for pinned versions | |
if: steps.changed-files.outputs.any_changed == 'true' | |
shell: bash | |
env: | |
FILE: ${{ steps.changed-files.outputs.all_changed_files }} | |
run: | | |
FILES=$(echo "${{ env.FILE }}") | |
curl -o $PWD/version-lint.sh https://raw.githubusercontent.com/bitwarden/gh-actions/main/.github/version-lint.sh | |
chmod +x $PWD/version-lint.sh && $PWD/version-lint.sh $FILES |