Skip to content

Commit

Permalink
Merge pull request #37 from Bayheck/actions-bump
Browse files Browse the repository at this point in the history
bump: actions update from v3 to v4
  • Loading branch information
Bayheck authored Jan 24, 2025
2 parents 77a7f2a + e9e8dc9 commit 6a5bd41
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion actions/build-docker/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ runs:
npx gulp docker-build
docker save -o ${{steps.package-name.outputs.packageName}}.tar ${{steps.package-name.outputs.imageName}}
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: docker
path: ${{steps.package-name.outputs.packageName}}.tar
2 changes: 1 addition & 1 deletion actions/build-npm/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ runs:
npm pack --pack-destination .builds
npm pack -ws --pack-destination .builds || echo No workspaces
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: npm
path: |
Expand Down
2 changes: 1 addition & 1 deletion actions/load-artifacts-npm/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ runs:
- id: detect-package-metadata
uses: DevExpress/testcafe-build-system/actions/detect-package-metadata@main

- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: npm

Expand Down
2 changes: 1 addition & 1 deletion actions/read-matrix-status/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ outputs:
runs:
using: composite
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: matrix-status

Expand Down
2 changes: 1 addition & 1 deletion actions/save-matrix-status/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ runs:
shell: bash
run: echo ${{ job.status }} > matrix-status-${{ inputs.job-id }}.txt

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: matrix-status
path: matrix-status-${{ inputs.job-id }}.txt

0 comments on commit 6a5bd41

Please sign in to comment.