Skip to content

Commit 64890ca

Browse files
BayheckBayheck
andauthored
Fix: workflow actions/upload-artifact and actions/download-artifact u… (#8366)
…pdated from deprecated v3 to v4 <!-- Thank you for your contribution. Before making a PR, please read our contributing guidelines at https://github.com/DevExpress/testcafe/blob/master/CONTRIBUTING.md#code-contribution We recommend creating a *draft* PR, so that you can mark it as 'ready for review' when you are done. --> ## Purpose _Describe the problem you want to address or the feature you want to implement._ ## Approach _Describe how your changes address the issue or implement the desired functionality in as much detail as possible._ ## References _Provide a link to the existing issue(s), if any._ ## Pre-Merge TODO - [ ] Write tests for your proposed changes - [ ] Make sure that existing tests do not fail Co-authored-by: Bayheck <[email protected]>
1 parent a4ff2d4 commit 64890ca

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/deploy-to-artifacts.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,15 @@ jobs:
4949
core.setOutput('packageName', `${name}-${version}`);
5050
core.setOutput('imageName', `${name}/${name}:${version}`);
5151
52-
- uses: actions/upload-artifact@v3
52+
- uses: actions/upload-artifact@v4
5353
with:
5454
name: npm
5555
path: |
5656
${{steps.package-name.outputs.packageName}}.tgz
5757
- run: |
5858
npx gulp docker-build
5959
docker save -o ${{steps.package-name.outputs.packageName}}.tar ${{steps.package-name.outputs.imageName}}
60-
- uses: actions/upload-artifact@v3
60+
- uses: actions/upload-artifact@v4
6161
with:
6262
name: docker
6363
path: ${{steps.package-name.outputs.packageName}}.tar
@@ -82,7 +82,7 @@ jobs:
8282
- run: |
8383
git reset --soft `git merge-base "${{github.event.inputs.base_sha}}" HEAD`
8484
git diff --name-only --cached > changes.txt
85-
- uses: actions/upload-artifact@v3
85+
- uses: actions/upload-artifact@v4
8686
with:
8787
name: changes
8888
path: changes.txt
@@ -97,7 +97,7 @@ jobs:
9797
runs-on: ubuntu-latest
9898
environment: CI
9999
steps:
100-
- uses: actions/download-artifact@v3
100+
- uses: actions/download-artifact@v4
101101
with:
102102
name: changes
103103
- uses: actions/github-script@v6

.github/workflows/test-functional.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ jobs:
159159

160160
- name: Save debug log
161161
if: always()
162-
uses: actions/upload-artifact@v3
162+
uses: actions/upload-artifact@v4
163163
with:
164164
name: testcafe-debug-log
165165
path: testcafe-debug-log-${{ matrix.test-group }}.log

0 commit comments

Comments
 (0)