From 8d39b715dc3f495920a0ac2e972efbb7453b2b53 Mon Sep 17 00:00:00 2001 From: Aditya Manthramurthy Date: Fri, 12 Apr 2024 02:25:58 -0700 Subject: [PATCH] Fix some CI warnings (#19482) --- .github/workflows/go-cross.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/go-cross.yml b/.github/workflows/go-cross.yml index 825280e13..067a35295 100644 --- a/.github/workflows/go-cross.yml +++ b/.github/workflows/go-cross.yml @@ -3,12 +3,12 @@ name: Crosscompile on: pull_request: branches: - - master - - next + - master + - next # This ensures that previous jobs for the PR are canceled when the PR is # updated. -concurrency: +concurrency: group: ${{ github.workflow }}-${{ github.head_ref }} cancel-in-progress: true @@ -24,8 +24,8 @@ jobs: go-version: [1.21.x] os: [ubuntu-latest] steps: - - uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3 - - uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # v3 + - uses: actions/checkout@v4 + - uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} check-latest: true