From c61fc8d8b3c55d32ddbc1070872d3c8cb88b6c54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Mur=C3=A9?= Date: Wed, 20 Nov 2024 16:07:49 +0100 Subject: [PATCH] ci: fix after merging to main --- .github/workflows/bench.yml | 4 ++-- .github/workflows/gotest.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/bench.yml b/.github/workflows/bench.yml index 24938e4..ac6fa77 100644 --- a/.github/workflows/bench.yml +++ b/.github/workflows/bench.yml @@ -2,7 +2,7 @@ name: go continuous benchmark on: push: branches: - - v1 + - main permissions: contents: write @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: actions/setup-go@v4 + - uses: actions/setup-go@v5 with: go-version: "stable" - name: Run benchmark diff --git a/.github/workflows/gotest.yml b/.github/workflows/gotest.yml index cdcce2a..e2bf6c8 100644 --- a/.github/workflows/gotest.yml +++ b/.github/workflows/gotest.yml @@ -13,8 +13,8 @@ jobs: runs-on: ${{ matrix.os }}-latest name: ${{ matrix.os}} (go ${{ matrix.go }}) steps: - - uses: actions/checkout@v2 - - uses: actions/setup-go@v2 + - uses: actions/checkout@v4 + - uses: actions/setup-go@v5 with: go-version: ${{ matrix.go }} - name: Go information