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 }}