Skip to content

Commit

Permalink
⬆️ Updates GitHub Artifact Actions to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Apr 24, 2024
1 parent 87ce7e6 commit 28961e4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
shell: pwsh
run: Expand-Archive -Path "version-json.zip" -DestinationPath ./version-json/
- name: Upload version-json
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: version-json
path: ./version-json/version.json
Expand All @@ -53,7 +53,7 @@ jobs:
shell: pwsh
run: Expand-Archive -Path "release-notes.zip" -DestinationPath ./release-notes/
- name: Upload release-notes
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: release-notes
path: ./release-notes/release-notes.md
Expand All @@ -67,7 +67,7 @@ jobs:
- name: Check out repository code
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
- name: "Get artifact: version-json"
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: version-json
path: ./out/
Expand All @@ -80,7 +80,7 @@ jobs:
echo "::set-output name=$key::$($version.$key)"
}
- name: "Get artifact: release-notes"
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: release-notes
path: ./out/
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
exit $gitversionExitCode
}
- name: "Create artifact: version-json"
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: version-json
path: ./out/version.json
Expand All @@ -62,7 +62,7 @@ jobs:
with:
fetch-depth: 0 # create-release-notes requires the full history to create the release notes.
- name: "Get artifact: version-json"
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: version-json
path: ./out/
Expand All @@ -85,7 +85,7 @@ jobs:
commitMode: true
outputFile: ./out/release-notes.md
- name: "Create artifact: release-notes"
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: release-notes
path: ./out/release-notes.md
Expand Down

0 comments on commit 28961e4

Please sign in to comment.