Skip to content

Commit 2ac7679

Browse files
authored
chore(deps): update github artifact actions (major) (#100)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/download-artifact](https://redirect.github.com/actions/download-artifact) | action | major | `v5` -> `v6` | | [actions/upload-artifact](https://redirect.github.com/actions/upload-artifact) | action | major | `v4` -> `v5` | --- ### Release Notes <details> <summary>actions/download-artifact (actions/download-artifact)</summary> ### [`v6`](https://redirect.github.com/actions/download-artifact/compare/v5...v6) [Compare Source](https://redirect.github.com/actions/download-artifact/compare/v5...v6) </details> <details> <summary>actions/upload-artifact (actions/upload-artifact)</summary> ### [`v5`](https://redirect.github.com/actions/upload-artifact/compare/v4...v5) [Compare Source](https://redirect.github.com/actions/upload-artifact/compare/v4...v5) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "every weekend" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/TomPlum/react-git-log). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNTYuMSIsInVwZGF0ZWRJblZlciI6IjQxLjE1Ni4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
2 parents 9213090 + 32ea3d0 commit 2ac7679

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/develop.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
- run: npm run test:unit:ci --workspace=@tomplum/react-git-log
6565
working-directory: packages/library
6666
- name: Store LCOV Info
67-
uses: actions/upload-artifact@v4
67+
uses: actions/upload-artifact@v5
6868
with:
6969
name: line-coverage-info
7070
path: packages/library/coverage/lcov.info
@@ -103,7 +103,7 @@ jobs:
103103
with:
104104
fetch-depth: '0'
105105
- name: Download LCOV Info Artifact
106-
uses: actions/download-artifact@v5
106+
uses: actions/download-artifact@v6
107107
with:
108108
name: line-coverage-info
109109
path: packages/library/coverage

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- run: npm install
1818
- run: npm run build --workspace=@tomplum/react-git-log
1919
- name: Store Built Artifact
20-
uses: actions/upload-artifact@v4
20+
uses: actions/upload-artifact@v5
2121
with:
2222
name: production-build
2323
path: ./packages/library/dist
@@ -33,7 +33,7 @@ jobs:
3333
- run: npm install
3434
- run: npm run build-storybook --workspace=@tomplum/react-git-log-demo
3535
- name: Store Storybook Statics
36-
uses: actions/upload-artifact@v4
36+
uses: actions/upload-artifact@v5
3737
with:
3838
name: storybook-static
3939
path: ./packages/demo/storybook-static
@@ -75,7 +75,7 @@ jobs:
7575
- run: npm run test:unit:ci --workspace=@tomplum/react-git-log
7676
working-directory: packages/library
7777
- name: Store LCOV Info
78-
uses: actions/upload-artifact@v4
78+
uses: actions/upload-artifact@v5
7979
with:
8080
name: line-coverage-info
8181
path: packages/library/coverage/lcov.info
@@ -114,7 +114,7 @@ jobs:
114114
with:
115115
fetch-depth: '0'
116116
- name: Download LCOV Info Artifact
117-
uses: actions/download-artifact@v5
117+
uses: actions/download-artifact@v6
118118
with:
119119
name: line-coverage-info
120120
path: packages/library/coverage
@@ -151,7 +151,7 @@ jobs:
151151
steps:
152152
- uses: actions/checkout@v4
153153
- name: Download Statics
154-
uses: actions/download-artifact@v5
154+
uses: actions/download-artifact@v6
155155
with:
156156
name: storybook-static
157157
path: ./packages/demo/storybook-static
@@ -184,7 +184,7 @@ jobs:
184184
fi
185185
186186
- name: Download Production Build
187-
uses: actions/download-artifact@v5
187+
uses: actions/download-artifact@v6
188188
with:
189189
name: production-build
190190
path: ./packages/library/dist

0 commit comments

Comments
 (0)