Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/python-build-hatch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
- name: Build
run: hatch build

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v7
with:
name: dist
path: ${{ inputs.working-directory }}/dist/
2 changes: 1 addition & 1 deletion .github/workflows/python-build-poetry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
- name: Build
run: poetry build

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v7
with:
name: dist
path: ${{ inputs.working-directory }}/dist/
2 changes: 1 addition & 1 deletion .github/workflows/python-publish-to-python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
id-token: write
steps:
- name: Download dist artifacts
uses: actions/download-artifact@v5
uses: actions/download-artifact@v7
with:
name: dist
path: dist
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-publish-to-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
id-token: write
steps:
- name: Download dist artifacts
uses: actions/download-artifact@v5
uses: actions/download-artifact@v7
with:
name: dist
path: dist
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/typescript-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,14 +70,14 @@ jobs:

- name: Upload VSIX artifact
if: ${{ hashFiles(format('{0}/*.vsix', inputs.working-directory)) != '' }}
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v7
with:
name: dist
path: "${{ inputs.working-directory }}/*.vsix"

- name: Upload dist artifact
if: ${{ hashFiles(format('{0}/*.vsix', inputs.working-directory)) == '' && hashFiles(format('{0}/dist/**', inputs.working-directory)) != '' }}
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v7
with:
name: dist
path: ${{ inputs.working-directory }}/dist/
Loading