Skip to content

Commit

Permalink
deps(ci): bump artifact actions
Browse files Browse the repository at this point in the history
  • Loading branch information
halamix2 authored and jmalak committed Feb 1, 2024
1 parent a4918ab commit ab03723
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/actions/artfload/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ runs:
}
shell: pwsh
- name: Restore Artifact ${{ steps.artifact_name.outputs.id }}
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ steps.artifact_name.outputs.id }}
path: ${{ steps.dstpath.outputs.path }}
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/artfsave/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ runs:
}
shell: pwsh
- name: Upload Artifact ${{ steps.artifact_name.outputs.id }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ steps.artifact_name.outputs.id }}
path: ${{ steps.srcpath.outputs.path }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ jobs:
gitpath: 'rel'
owdebug: ${{ vars.OWDEBUG }}
- name: Upload Artifact owsnapshot
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: 'owsnapshot'
path: ${{ steps.owsnapshot.outputs.fullname }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ jobs:
shell: bash
- if: vars.OWDEBUG == 1
name: Upload Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: 'coverity'
path: ${{ steps.tarname.outputs.fullname }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/wikidocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,12 +104,12 @@ jobs:
OWGHTOKEN: ${{ secrets.OWGHTOKEN }}
OWWIKIPROJ: open-watcom/open-watcom-v2-wikidocs
- name: Download Artifact html
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: 'rel-wikihtml-vs2019'
path: docs
- name: Download Artifact pdf
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: 'rel-wikipdf-vs2019'
path: docs
Expand Down

0 comments on commit ab03723

Please sign in to comment.