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/codecov-collect.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
run: cd packages/aws-cdk-lib && yarn test core

- name: Upload Coverage and PR Info
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: coverage-artifacts
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-linter-review-trigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
mkdir -p ./pr
echo $PR_NUMBER > ./pr/pr_number
echo $PR_SHA > ./pr/pr_sha
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: pr_info
path: pr/
8 changes: 4 additions & 4 deletions .github/workflows/spec-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

# Upload the current db to be used later
- name: Upload base database
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: db.base.json.gz
path: node_modules/@aws-cdk/aws-service-spec/db.json.gz
Expand All @@ -49,7 +49,7 @@ jobs:

# Now that we have updated the database, upload the new candidate db
- name: Upload head database
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: db.head.json.gz
path: node_modules/@aws-cdk/aws-service-spec/db.json.gz
Expand All @@ -69,7 +69,7 @@ jobs:
git add .
git diff --patch --staged > ${{ runner.temp }}/update-spec.patch
- name: Upload Patch
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: update-spec.patch
path: ${{ runner.temp }}/update-spec.patch
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
cat DIFF >> PR.md
echo '```' >> PR.md
- name: Upload PR body file
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: PR.md
path: PR.md
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-metadata-regions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
git add .
git diff --patch --staged > ${{ runner.temp }}/update-spec.patch
- name: Upload Patch
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: update-spec.patch
path: ${{ runner.temp }}/update-spec.patch
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/yarn-upgrade-need-manual-work.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
git diff --binary --patch --staged > ${{ runner.temp }}/upgrade.patch

- name: Upload Patch
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: upgrade.patch
path: ${{ runner.temp }}/upgrade.patch
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/yarn-upgrade.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
git add .
git diff --patch --staged > ${{ runner.temp }}/upgrade.patch
- name: Upload Patch
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: upgrade.patch
path: ${{ runner.temp }}/upgrade.patch
Expand Down
Loading