diff --git a/.github/workflows/benchstat.yml b/.github/workflows/benchstat.yml index ef7dcfb..df1b722 100644 --- a/.github/workflows/benchstat.yml +++ b/.github/workflows/benchstat.yml @@ -25,7 +25,7 @@ jobs: - name: Benchmark run: go test -run=^$ -bench=. -count=5 -timeout=60m ./... | tee -a new.txt - name: Upload Benchmark - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: bench-incoming path: new.txt @@ -50,7 +50,7 @@ jobs: - name: Benchmark run: go test -run=^$ -bench=. -count=5 -timeout=60m ./... | tee -a old.txt - name: Upload Benchmark - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: bench-current path: old.txt @@ -79,7 +79,7 @@ jobs: - name: Benchstat Results run: benchstat old.txt new.txt | tee -a benchstat.txt - name: Upload benchstat results - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: benchstat path: benchstat.txt