Skip to content

Commit

Permalink
Merge pull request #86 from deemru/temp
Browse files Browse the repository at this point in the history
clone -> init && fetch
  • Loading branch information
deemru authored Apr 3, 2024
2 parents 0d26bf6 + 5ac15b5 commit 43f9bae
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,11 @@ jobs:
git submodule update --init --recursive --depth 1
CHROMIUM_TAG=$(cat VERSION)
BORINGSSL_REVISION=$(curl -s https://raw.githubusercontent.com/chromium/chromium/$CHROMIUM_TAG/DEPS | grep "'boringssl_revision':" | awk -F"'" '{print $4}')
git clone https://github.com/google/boringssl.git
mkdir boringssl
cd boringssl
git init -q .
git remote add origin https://github.com/google/boringssl.git
git fetch origin $BORINGSSL_REVISION
git checkout -b temp $BORINGSSL_REVISION
git config user.name "temp"
git config user.email "[email protected]"
Expand Down

0 comments on commit 43f9bae

Please sign in to comment.