From dc770f75a1519c82932e45276fc36a8b02503f96 Mon Sep 17 00:00:00 2001 From: Scott Mattan Date: Tue, 29 Oct 2024 13:51:44 +0900 Subject: [PATCH] update actions --- setup-go/action.yaml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/setup-go/action.yaml b/setup-go/action.yaml index 1078528..75d3d75 100644 --- a/setup-go/action.yaml +++ b/setup-go/action.yaml @@ -1,4 +1,4 @@ -name: 'Setup Golang for Actions' +name: "Setup Golang for Actions" description: Composite Golang and cache setup author: Scott Mattan (Rusty) branding: @@ -21,13 +21,12 @@ inputs: runs: using: "composite" steps: - - - uses: actions/setup-go@v3 + - uses: actions/setup-go@v5 with: go-version: ${{ inputs.go-version }} - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ${{ inputs.path }} key: ${{ inputs.key }} - restore-keys: ${{ inputs.restore-keys }} \ No newline at end of file + restore-keys: ${{ inputs.restore-keys }}