From 9b95f4bfec074b296c5b99bbc7ac2c8f778ad07e Mon Sep 17 00:00:00 2001 From: Fabian Siegel Date: Sat, 7 Sep 2024 21:46:57 +0200 Subject: [PATCH] chore: upgrade further actions files --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 115bb92..c7c9825 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,12 +12,12 @@ jobs: GO111MODULE: "on" steps: - name: Install Go - uses: actions/setup-go@v2 + uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Download Go modules run: go mod download