From f06f82b16a7493fe930681d2e712cf5909399d35 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Sat, 10 Dec 2022 13:48:15 +0100 Subject: [PATCH] gha: update actions/checkout@v4, actions/setup-go@v5 Signed-off-by: Sebastiaan van Stijn --- .github/workflows/ci.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 227a823..dfdd6f5 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -15,12 +15,12 @@ jobs: matrix: os: [ubuntu, macos, windows] golang: ['1.23', '1.24'] - # currently, we cannot run non-x86_64 machines on Github Actions cloud env. + # currently, we cannot run non-x86_64 machines on GitHub Actions cloud env. runs-on: ${{ matrix.os }}-latest name: CI golang ${{ matrix.golang }} on ${{ matrix.os }} steps: - - uses: actions/checkout@v2 - - uses: actions/setup-go@v2 + - uses: actions/checkout@v4 + - uses: actions/setup-go@v5 with: go-version: ${{ matrix.golang }} - name: Test