From c7170d90969864c5c07a0e2934a8ddb467cf7888 Mon Sep 17 00:00:00 2001 From: Allan Jeremy Date: Wed, 18 May 2022 13:17:08 +0300 Subject: [PATCH] [Bugfix] Fixed incorrect reference in git checkout --- .github/workflows/benchmark.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 084457b1..3c69a2ec 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -44,7 +44,7 @@ jobs: - uses: actions/checkout@v2 - run: | - git checkout ${{ GITHUB_SHA }} + git checkout ${{ github.sha }} for historicTags in $(git rev-list --tags -n 9); do git checkout $historicTags echo "Checking out $historicTags"