Skip to content

Commit 2a9afd8

Browse files
Update actions/cache action to v4.1.2 (#11510)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/cache](https://redirect.github.com/actions/cache) | action | patch | `v4.1.1` -> `v4.1.2` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>actions/cache (actions/cache)</summary> ### [`v4.1.2`](https://redirect.github.com/actions/cache/compare/v4.1.1...v4.1.2) [Compare Source](https://redirect.github.com/actions/cache/compare/v4.1.1...v4.1.2) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4xMjAuMSIsInVwZGF0ZWRJblZlciI6IjM4LjEyMC4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiLCJyZW5vdmF0ZWJvdCJdfQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 11767fe commit 2a9afd8

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

.github/workflows/build-and-test-arm.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Cache Go
3737
id: go-cache
3838
timeout-minutes: 5
39-
uses: actions/cache@3624ceb22c1c5a301c8db4169662070a689d9ea8 # v4.1.1
39+
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
4040
with:
4141
path: |
4242
~/go/bin

.github/workflows/build-and-test-windows.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
go-version: ~1.22.8
2626
cache: false
2727
- name: Cache Go
28-
uses: actions/cache@3624ceb22c1c5a301c8db4169662070a689d9ea8 # v4.1.1
28+
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
2929
env:
3030
cache-name: cache-go-modules
3131
with:
@@ -50,7 +50,7 @@ jobs:
5050
go-version: ~1.22.8
5151
cache: false
5252
- name: Cache Go
53-
uses: actions/cache@3624ceb22c1c5a301c8db4169662070a689d9ea8 # v4.1.1
53+
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
5454
env:
5555
cache-name: cache-go-modules
5656
with:

.github/workflows/build-and-test.yml

+9-9
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
cache: false
2727
- name: Cache Go
2828
id: go-cache
29-
uses: actions/cache@3624ceb22c1c5a301c8db4169662070a689d9ea8 # v4.1.1
29+
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
3030
with:
3131
path: |
3232
~/go/bin
@@ -49,7 +49,7 @@ jobs:
4949
cache: false
5050
- name: Cache Go
5151
id: go-cache
52-
uses: actions/cache@3624ceb22c1c5a301c8db4169662070a689d9ea8 # v4.1.1
52+
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
5353
with:
5454
path: |
5555
~/go/bin
@@ -73,7 +73,7 @@ jobs:
7373
cache: false
7474
- name: Cache Go
7575
id: go-cache
76-
uses: actions/cache@3624ceb22c1c5a301c8db4169662070a689d9ea8 # v4.1.1
76+
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
7777
with:
7878
path: |
7979
~/go/bin
@@ -98,7 +98,7 @@ jobs:
9898
cache: false
9999
- name: Cache Go
100100
id: go-cache
101-
uses: actions/cache@3624ceb22c1c5a301c8db4169662070a689d9ea8 # v4.1.1
101+
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
102102
with:
103103
path: |
104104
~/go/bin
@@ -154,14 +154,14 @@ jobs:
154154
cache: false
155155
- name: Cache Go
156156
id: go-cache
157-
uses: actions/cache@3624ceb22c1c5a301c8db4169662070a689d9ea8 # v4.1.1
157+
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
158158
with:
159159
path: |
160160
~/go/bin
161161
~/go/pkg/mod
162162
key: go-cache-${{ runner.os }}-${{ matrix.runner }}-${{ hashFiles('**/go.sum') }}
163163
- name: Cache Build
164-
uses: actions/cache@3624ceb22c1c5a301c8db4169662070a689d9ea8 # v4.1.1
164+
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
165165
with:
166166
path: ~/.cache/go-build
167167
key: unittest-${{ runner.os }}-${{ matrix.runner }}-go-build-${{ matrix.go-version }}-${{ hashFiles('**/go.sum') }}
@@ -198,14 +198,14 @@ jobs:
198198
cache: false
199199
- name: Cache Go
200200
id: go-cache
201-
uses: actions/cache@3624ceb22c1c5a301c8db4169662070a689d9ea8 # v4.1.1
201+
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
202202
with:
203203
path: |
204204
~/go/bin
205205
~/go/pkg/mod
206206
key: go-cache-${{ runner.os }}-${{ hashFiles('**/go.sum') }}
207207
- name: Cache Build
208-
uses: actions/cache@3624ceb22c1c5a301c8db4169662070a689d9ea8 # v4.1.1
208+
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
209209
with:
210210
path: ~/.cache/go-build
211211
key: coverage-${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}
@@ -260,7 +260,7 @@ jobs:
260260
cache: false
261261
- name: Cache Go
262262
id: go-cache
263-
uses: actions/cache@3624ceb22c1c5a301c8db4169662070a689d9ea8 # v4.1.1
263+
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
264264
with:
265265
path: |
266266
~/go/bin

.github/workflows/changelog.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
go-version: ~1.22.8
3636
- name: Cache Go
3737
id: go-cache
38-
uses: actions/cache@3624ceb22c1c5a301c8db4169662070a689d9ea8 # v4.1.1
38+
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
3939
with:
4040
path: |
4141
~/go/bin

.github/workflows/tidy-dependencies.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
cache: false
2626
- name: Cache Go
2727
id: go-cache
28-
uses: actions/cache@3624ceb22c1c5a301c8db4169662070a689d9ea8 # v4.1.1
28+
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
2929
with:
3030
path: |
3131
~/go/bin

0 commit comments

Comments
 (0)