diff --git a/.github/workflows/build-bun.yml b/.github/workflows/build-bun.yml index 2a78c27..76668d1 100644 --- a/.github/workflows/build-bun.yml +++ b/.github/workflows/build-bun.yml @@ -88,7 +88,7 @@ jobs: - name: Upload build artifacts if: steps.build.outputs.artifact-name != '' && inputs.artifact-path != '' id: upload-artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: ${{ inputs.artifact-name }} path: ${{ inputs.working-directory }}/${{ inputs.artifact-path }} diff --git a/.github/workflows/build-flutter.yml b/.github/workflows/build-flutter.yml index 9df4827..680cc5a 100644 --- a/.github/workflows/build-flutter.yml +++ b/.github/workflows/build-flutter.yml @@ -309,7 +309,7 @@ jobs: - id: upload-artifact name: Upload build artifacts if: inputs.artifact-name != '' && inputs.artifact-path != '' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: ${{ inputs.artifact-name }} path: ${{ inputs.working-directory }}/${{ inputs.artifact-path }} diff --git a/.github/workflows/build-springboot.yml b/.github/workflows/build-springboot.yml index d4f601e..74992bc 100644 --- a/.github/workflows/build-springboot.yml +++ b/.github/workflows/build-springboot.yml @@ -71,7 +71,7 @@ jobs: - id: upload-artifact name: Upload build artifacts if: inputs.artifact-name != '' && inputs.artifact-path != '' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: ${{ inputs.artifact-name }} path: ${{ inputs.working-directory }}/${{ inputs.artifact-path }} diff --git a/.github/workflows/test-bun.yml b/.github/workflows/test-bun.yml index 76b05b1..4794bf1 100644 --- a/.github/workflows/test-bun.yml +++ b/.github/workflows/test-bun.yml @@ -64,7 +64,7 @@ jobs: - id: upload-artifact name: Upload artifact if: inputs.artifact-name != '' && inputs.artifact-path != '' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: ${{ inputs.artifact-name }} path: ${{ inputs.working-directory }}/${{ inputs.artifact-path }} diff --git a/.github/workflows/test-flutter.yml b/.github/workflows/test-flutter.yml index 5840fc8..7efab0e 100644 --- a/.github/workflows/test-flutter.yml +++ b/.github/workflows/test-flutter.yml @@ -66,7 +66,7 @@ jobs: - name: Upload artifact if: inputs.artifact-name != '' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: ${{ inputs.artifact-name }} path: ${{ inputs.working-directory }}/${{ inputs.artifact-path }} diff --git a/.github/workflows/test-springboot.yml b/.github/workflows/test-springboot.yml index 110e046..2abb749 100644 --- a/.github/workflows/test-springboot.yml +++ b/.github/workflows/test-springboot.yml @@ -81,7 +81,7 @@ jobs: - id: upload-artifact name: Upload build artifacts if: inputs.artifact-name != '' && inputs.artifact-path != '' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: ${{ inputs.artifact-name }} path: ${{ inputs.working-directory }}/${{ inputs.artifact-path }} diff --git a/docs/upsert-release.md b/docs/upsert-release.md index df8bf25..f5b5865 100644 --- a/docs/upsert-release.md +++ b/docs/upsert-release.md @@ -11,7 +11,7 @@ on: jobs: prepare: name: Prepare release - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: artifact-name: 'release' artifact-path: 'README.md'