From bfa85f8b8c99bc6ef2da65308bc0245f9b285b12 Mon Sep 17 00:00:00 2001 From: Allan Jeremy Date: Wed, 25 May 2022 17:20:11 +0300 Subject: [PATCH] Cleanup: Updated messages & removed unnecessary BENCH_GITHUB_TOKEN references in actions/checkout --- .github/workflows/benchmark-cachegrind.yml | 6 ++---- .github/workflows/benchmark.yml | 5 +++-- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/benchmark-cachegrind.yml b/.github/workflows/benchmark-cachegrind.yml index 3e81cc44..be016430 100644 --- a/.github/workflows/benchmark-cachegrind.yml +++ b/.github/workflows/benchmark-cachegrind.yml @@ -30,9 +30,8 @@ jobs: runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v3 - with: - token: "${{ secrets.BENCH_GITHUB_TOKEN }}" + - name: Checkout Luau + uses: actions/checkout@v3 - name: Build Luau run: make config=release luau luau-analyze @@ -62,7 +61,6 @@ jobs: with: repository: ${{ matrix.benchmarkResultsRepo.name }} ref: ${{ matrix.benchmarkResultsRepo.branch }} - token: "${{ secrets.BENCH_GITHUB_TOKEN }}" path: "./gh-pages" #Run `github-action-benchmark` action diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 59571779..4642c841 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -30,7 +30,8 @@ jobs: runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v3 + - name: Checkout Luau repository + uses: actions/checkout@v3 - name: Build Luau run: make config=release luau luau-analyze @@ -49,7 +50,7 @@ jobs: run: | python bench/bench.py | tee ${{ matrix.bench.script }}-output.txt - - name: Switch to & checkout benchmark results (gh-pages) repo + - name: Checkout Benchmark Results repository uses: actions/checkout@v3 with: repository: ${{ matrix.benchmarkResultsRepo.name }}