From 6d7369ea0762da41625c5800a77e5a289ab98c73 Mon Sep 17 00:00:00 2001 From: Andreas Deininger Date: Fri, 22 Nov 2024 14:56:21 +0100 Subject: [PATCH] Bump GitHub actions to their latest versions (#793) --- .github/workflows/go.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index d01c4988..4aa7d150 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -13,10 +13,10 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Go - uses: actions/setup-go@v2 + uses: actions/setup-go@v5 with: go-version: 1.22 @@ -29,7 +29,7 @@ jobs: - name: Get release id: get_release if: github.event_name == 'release' && github.event.action == 'published' - uses: bruceadams/get-release@v1.2.3 + uses: bruceadams/get-release@v1.3.2 env: GITHUB_TOKEN: ${{ github.token }}