From d899ca949161b2e6df53ac309ee3a7dcca557320 Mon Sep 17 00:00:00 2001 From: Nick McClendon Date: Thu, 5 Sep 2024 01:19:06 -0500 Subject: [PATCH] Bump Actions versions --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 23fe107..b24aeb8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,9 +8,9 @@ jobs: runs-on: windows-latest steps: - name: Checkout Code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Go - uses: actions/setup-go@v3 + uses: actions/setup-go@v4 with: go-version: 1.22 - name: Setup msys2 @@ -29,7 +29,7 @@ jobs: - name: Build shelidate run: go build -o shelidate.exe ./cmd/... - name: Upload Shelidate - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: Shelidate path: shelidate.exe