From c4819f55ba1bff5ea623895b63e276602132f9e1 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Sun, 12 Oct 2025 15:28:26 +0200 Subject: [PATCH] Upgrade GitHub Actions https://github.com/actions/checkout/releases https://github.com/actions/setup-go/releases --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 86a5f633..5fc4227a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: runs-on: ${{ matrix.platform }} steps: - name: Install Go - uses: actions/setup-go@v5 + uses: actions/setup-go@v6 with: go-version: ${{ matrix.go-version }} @@ -34,7 +34,7 @@ jobs: git config --global core.eol lf - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 1