dependabot[bot]
		
	commited on
		
		
					github-actions(deps): bump actions/upload-artifact from 3 to 4
Browse filesBumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/v3...v4)
---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-version: '4'
  dependency-type: direct:production
  update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <[email protected]>
    	
        .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@ | 
| 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@ | 
| 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@ | 
| 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@ | 
| 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@ | 
| 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@ | 
| 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
         | 
