Skip to content

Commit 0e60078

Browse files
authored
Merge pull request #1080 from emberjs/kg-fix-ci
Update to upload-artifact@v4
2 parents c69063f + 3733e40 commit 0e60078

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/generate-rfc-frontmatter-json.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,9 @@ jobs:
2020
run: |
2121
node rfcs-tooling/scripts/list-frontmatter.mjs text/*.md > rfc-data.json
2222
23-
- uses: actions/upload-artifact@v3
23+
- uses: actions/upload-artifact@v4
2424
with:
2525
name: rfc-data
2626
path: rfc-data.json
2727
if-no-files-found: error
28+
overwrite: true

.github/workflows/open-advancement-pr.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,9 @@ jobs:
8888
echo '{ "file": "${{ inputs.rfc-path }}", "number": "${{ inputs.rfc-number }}", "pr": "${{ steps.create-pr.outputs.pull-request-url }}", "advancementStage": "${{ inputs.new-stage }}" }' > advance-rfc-${{ inputs.rfc-number }}.json
8989
9090
- name: Upload artifact of open RFC PRs
91-
uses: actions/upload-artifact@v3
91+
uses: actions/upload-artifact@v4
9292
with:
9393
name: advancement-prs
9494
path: advance-rfc-${{ inputs.rfc-number }}.json
95+
overwrite: true
9596
if-no-files-found: error

0 commit comments

Comments
 (0)