diff --git a/.github/workflows/python-build-hatch.yml b/.github/workflows/python-build-hatch.yml index 93ed1c5..e77d630 100644 --- a/.github/workflows/python-build-hatch.yml +++ b/.github/workflows/python-build-hatch.yml @@ -51,7 +51,7 @@ jobs: - name: Build run: hatch build - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 with: name: dist path: ${{ inputs.working-directory }}/dist/ diff --git a/.github/workflows/python-build-poetry.yml b/.github/workflows/python-build-poetry.yml index 29b5447..042531e 100644 --- a/.github/workflows/python-build-poetry.yml +++ b/.github/workflows/python-build-poetry.yml @@ -74,7 +74,7 @@ jobs: - name: Build run: poetry build - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 with: name: dist path: ${{ inputs.working-directory }}/dist/ diff --git a/.github/workflows/typescript-build.yml b/.github/workflows/typescript-build.yml index 7a7082b..7eac074 100644 --- a/.github/workflows/typescript-build.yml +++ b/.github/workflows/typescript-build.yml @@ -70,14 +70,14 @@ jobs: - name: Upload VSIX artifact if: ${{ hashFiles(format('{0}/*.vsix', inputs.working-directory)) != '' }} - uses: actions/upload-artifact@v6 + 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@v6 + uses: actions/upload-artifact@v7 with: name: dist path: ${{ inputs.working-directory }}/dist/