[Snyk] Security upgrade electron-updater from 4.6.5 to 6.3.0 #30
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: Validate Github Actions | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
branches-ignore: [staging, production] | |
jobs: | |
verify: | |
if: github.actor != 'OSBotify' | |
runs-on: ubuntu-latest | |
steps: | |
# This action checks-out the repository, so the workflow can access it. | |
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 | |
with: | |
fetch-depth: 0 | |
- uses: Expensify/App/.github/actions/composite/setupNode@main | |
# Rebuild all the actions on this branch and check for a diff. Fail if there is one, | |
# because that would be a sign that the PR author did not rebuild the Github Actions | |
- name: Verify Javascript Action Builds | |
run: ./.github/scripts/verifyActions.sh | |
- name: Validate actions and workflows | |
run: npm run gh-actions-validate |