@@ -39,15 +39,15 @@ runs:
39
39
40
40
- if : ${{ inputs.create != 'true' }}
41
41
name : Restore Go modules
42
- uses : actions/cache/restore@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
42
+ uses : actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
43
43
with :
44
44
key : ${{ steps.cache-info.outputs.modules-key }}
45
45
path : |
46
46
~/go/pkg/mod
47
47
48
48
- if : ${{ inputs.create != 'true' }}
49
49
name : Restore Go build cache
50
- uses : actions/cache/restore@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
50
+ uses : actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
51
51
with :
52
52
key : unused-key-${{ github.run_id }}
53
53
restore-keys : ${{ steps.cache-info.outputs.build-key }}-
58
58
59
59
- if : ${{ inputs.create != 'true' && inputs.lint-cache == 'true' }}
60
60
name : Restore golangci-lint cache
61
- uses : actions/cache/restore@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
61
+ uses : actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
62
62
with :
63
63
key : unused-key-${{ github.run_id }}
64
64
restore-keys : ${{ steps.cache-info.outputs.lint-key }}-
@@ -114,15 +114,15 @@ runs:
114
114
115
115
- if : ${{ inputs.create == 'true' }}
116
116
name : Save Go modules
117
- uses : actions/cache/save@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
117
+ uses : actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
118
118
with :
119
119
key : ${{ steps.cache-info.outputs.modules-key }}
120
120
path : |
121
121
~/go/pkg/mod
122
122
123
123
- if : ${{ inputs.create == 'true' }}
124
124
name : Save Go build cache
125
- uses : actions/cache/save@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
125
+ uses : actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
126
126
with :
127
127
key : ${{ steps.cache-info.outputs.build-key }}-${{ github.run_id }}
128
128
path : |
@@ -132,7 +132,7 @@ runs:
132
132
133
133
- if : ${{ inputs.create == 'true' }}
134
134
name : Save golangci-lint cache
135
- uses : actions/cache/save@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
135
+ uses : actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
136
136
with :
137
137
key : ${{ steps.cache-info.outputs.lint-key }}-${{ github.run_id }}
138
138
path : ${{ env.GOLANGCI_LINT_CACHE }}
0 commit comments