Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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/build-bun.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-flutter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
2 changes: 1 addition & 1 deletion .github/workflows/build-springboot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
2 changes: 1 addition & 1 deletion .github/workflows/test-bun.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
2 changes: 1 addition & 1 deletion .github/workflows/test-flutter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
2 changes: 1 addition & 1 deletion .github/workflows/test-springboot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion docs/upsert-release.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
Loading