From 8f9f7bf94d74e2681dd6c3d557cdecdebafa38f6 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 21 Jun 2026 22:04:57 +0000 Subject: [PATCH] chore(github-actions): update github artifact actions to v7 --- .github/workflows/python-build-hatch.yml | 2 +- .github/workflows/python-build-poetry.yml | 2 +- .github/workflows/python-publish-to-python-test.yml | 2 +- .github/workflows/python-publish-to-python.yml | 2 +- .github/workflows/typescript-build.yml | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/python-build-hatch.yml b/.github/workflows/python-build-hatch.yml index 1c45dd0..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@v5 + - 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 50aadd1..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@v5 + - uses: actions/upload-artifact@v7 with: name: dist path: ${{ inputs.working-directory }}/dist/ diff --git a/.github/workflows/python-publish-to-python-test.yml b/.github/workflows/python-publish-to-python-test.yml index 9801760..b1f6a49 100644 --- a/.github/workflows/python-publish-to-python-test.yml +++ b/.github/workflows/python-publish-to-python-test.yml @@ -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 diff --git a/.github/workflows/python-publish-to-python.yml b/.github/workflows/python-publish-to-python.yml index e3fb845..9755c71 100644 --- a/.github/workflows/python-publish-to-python.yml +++ b/.github/workflows/python-publish-to-python.yml @@ -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 diff --git a/.github/workflows/typescript-build.yml b/.github/workflows/typescript-build.yml index 36289dd..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@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/