Edwin Salguero commited on
Commit
dff59d0
·
unverified ·
2 Parent(s): 473ab5f 7af573a

Merge pull request #3 from EAName/dependabot/github_actions/actions/upload-artifact-4

Browse files
.github/workflows/backtesting.yml CHANGED
@@ -102,7 +102,7 @@ jobs:
102
  echo "- Training Stability: Good" >> backtesting-report.md
103
 
104
  - name: Upload backtesting report
105
- uses: actions/upload-artifact@v3
106
  with:
107
  name: backtesting-report
108
  path: backtesting-report.md
 
102
  echo "- Training Stability: Good" >> backtesting-report.md
103
 
104
  - name: Upload backtesting report
105
+ uses: actions/upload-artifact@v4
106
  with:
107
  name: backtesting-report
108
  path: backtesting-report.md
.github/workflows/ci-cd.yml CHANGED
@@ -49,7 +49,7 @@ jobs:
49
  safety check --json --output safety-report.json || true
50
 
51
  - name: Upload security reports
52
- uses: actions/upload-artifact@v3
53
  with:
54
  name: security-reports
55
  path: |
@@ -92,7 +92,7 @@ jobs:
92
  name: codecov-umbrella
93
 
94
  - name: Upload test artifacts
95
- uses: actions/upload-artifact@v3
96
  with:
97
  name: test-results-${{ matrix.python-version }}
98
  path: |
@@ -135,7 +135,7 @@ jobs:
135
  "
136
 
137
  - name: Upload trained model
138
- uses: actions/upload-artifact@v3
139
  with:
140
  name: finrl-model
141
  path: models/finrl_best/
@@ -169,7 +169,7 @@ jobs:
169
  docker save ${{ env.DOCKER_IMAGE }}:test -o /tmp/docker-image.tar
170
 
171
  - name: Upload Docker image
172
- uses: actions/upload-artifact@v3
173
  with:
174
  name: docker-image
175
  path: /tmp/docker-image.tar
@@ -295,7 +295,7 @@ jobs:
295
  "
296
 
297
  - name: Upload performance report
298
- uses: actions/upload-artifact@v3
299
  with:
300
  name: performance-report
301
  path: performance-results.json
 
49
  safety check --json --output safety-report.json || true
50
 
51
  - name: Upload security reports
52
+ uses: actions/upload-artifact@v4
53
  with:
54
  name: security-reports
55
  path: |
 
92
  name: codecov-umbrella
93
 
94
  - name: Upload test artifacts
95
+ uses: actions/upload-artifact@v4
96
  with:
97
  name: test-results-${{ matrix.python-version }}
98
  path: |
 
135
  "
136
 
137
  - name: Upload trained model
138
+ uses: actions/upload-artifact@v4
139
  with:
140
  name: finrl-model
141
  path: models/finrl_best/
 
169
  docker save ${{ env.DOCKER_IMAGE }}:test -o /tmp/docker-image.tar
170
 
171
  - name: Upload Docker image
172
+ uses: actions/upload-artifact@v4
173
  with:
174
  name: docker-image
175
  path: /tmp/docker-image.tar
 
295
  "
296
 
297
  - name: Upload performance report
298
+ uses: actions/upload-artifact@v4
299
  with:
300
  name: performance-report
301
  path: performance-results.json