Skip to content

Commit

Permalink
Merge branch 'main' into split-python2-python3-install
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisgavin authored Dec 7, 2020
2 parents 6156eb9 + 6821589 commit 222b57e
Show file tree
Hide file tree
Showing 59 changed files with 1,591 additions and 409 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/check-expected-release-files.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Check Expected Release Files

on:
pull_request:
paths:
- .github/workflows/check-expected-release-files.yml
- src/defaults.json

jobs:
check-expected-release-files:
runs-on: ubuntu-latest

steps:
- name: Checkout CodeQL Action
uses: actions/checkout@v2
- name: Check Expected Release Files
run: |
bundle_version="$(cat "./src/defaults.json" | jq -r ".bundleVersion")"
set -x
for expected_file in "codeql-bundle.tar.gz" "codeql-bundle-linux64.tar.gz" "codeql-bundle-osx64.tar.gz" "codeql-bundle-win64.tar.gz" "codeql-runner-linux" "codeql-runner-macos" "codeql-runner-win.exe"; do
curl --location --fail --head --request GET "https://github.com/github/codeql-action/releases/download/$bundle_version/$expected_file" > /dev/null
done
98 changes: 75 additions & 23 deletions lib/actions-util.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 222b57e

Please sign in to comment.