File tree 3 files changed +5
-5
lines changed 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -11,15 +11,15 @@ runs:
11
11
- id : yarn-cache
12
12
uses : actions/cache@v4
13
13
with :
14
- key : yarn-cache-${{ github.workflow }}-${{ github.job }}-${{ hashFiles('yarn.lock') }}
14
+ key : yarn-cache-${{ github.workflow }}-${{ github.job }}-${{ hashFiles('yarn.lock') }}-v2
15
15
path : node_modules.tar
16
16
if : inputs.cache == 'true'
17
- - run : 7z x -y node_modules.tar
17
+ - run : tar -xf node_modules.tar
18
18
shell : bash
19
19
if : inputs.cache == 'true' && steps.yarn-cache.outputs.cache-hit == 'true'
20
20
# Retry in case of server error from registry.
21
21
- run : yarn install --frozen-lockfile --ignore-engines || yarn install --frozen-lockfile --ignore-engines
22
22
shell : bash
23
- - run : 7z -mx0 a node_modules.tar node_modules
23
+ - run : tar -cf node_modules.tar node_modules
24
24
shell : bash
25
25
if : inputs.cache == 'true' && steps.yarn-cache.outputs.cache-hit != 'true'
Original file line number Diff line number Diff line change @@ -853,7 +853,7 @@ jobs:
853
853
- 1521:1521
854
854
- 5500:5500
855
855
testagent :
856
- image : ghcr.io/datadog/dd-apm-test-agent/ddapm-test-agent:v1.16.0
856
+ image : ghcr.io/datadog/dd-apm-test-agent/ddapm-test-agent:v1.21.1
857
857
env :
858
858
LOG_LEVEL : DEBUG
859
859
TRACE_LANGUAGE : javascript
Original file line number Diff line number Diff line change @@ -155,7 +155,7 @@ services:
155
155
- LDAP_PASSWORDS=password1,password2
156
156
157
157
testagent :
158
- image : ghcr.io/datadog/dd-apm-test-agent/ddapm-test-agent:v1.16.0
158
+ image : ghcr.io/datadog/dd-apm-test-agent/ddapm-test-agent:v1.21.1
159
159
ports :
160
160
- " 127.0.0.1:9126:9126"
161
161
environment :
You can’t perform that action at this time.
0 commit comments