Skip to content

Commit

Permalink
Use upload- and download-artifact v4 (#351)
Browse files Browse the repository at this point in the history
v3 is deprecated and will stop working one month from now
  • Loading branch information
rmunn authored Oct 25, 2024
1 parent 5263587 commit a6a7041
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci+cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Upload
uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8 # v3.1.0
uses: actions/upload-artifact@v4
with:
name: Event File
path: ${{ github.event_path }}
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:

- name: Upload Test Results
if: always()
uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8 # v3.1.0
uses: actions/upload-artifact@v4
with:
name: Test Results (${{matrix.os}})
path: "**/TestResults/*.xml"
Expand All @@ -93,7 +93,7 @@ jobs:
if: matrix.os == 'windows-latest'

- name: Upload Merge Module
uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8 # v3.1.0
uses: actions/upload-artifact@v4
with:
name: chorus-merge-module
path: |
Expand All @@ -109,7 +109,7 @@ jobs:
if: matrix.os == 'windows-latest'

- name: Upload Chorus Hub Installer
uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8 # v3.1.0
uses: actions/upload-artifact@v4
with:
name: chorus-hub-installer
path: |
Expand All @@ -120,7 +120,7 @@ jobs:
run: dotnet pack --no-restore --no-build -c Release

- name: Upload Artifacts
uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8 # v3.1.0
uses: actions/upload-artifact@v4
with:
name: chorus-dotnet-nugetpackage
path: |
Expand All @@ -135,7 +135,7 @@ jobs:
if: github.event_name == 'push'
steps:
- name: Download Artifacts
uses: actions/download-artifact@fb598a63ae348fa914e94cd0ff38f362e927b741 # v3.0.0
uses: actions/download-artifact@v4
with:
path: artifacts

Expand Down

0 comments on commit a6a7041

Please sign in to comment.