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
4 changes: 2 additions & 2 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Execute Gradle build
run: ./gradlew check graphqlGenerateSDL
- name: Upload schema artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
path: build/${{ env.SCHEMA_FILE }}
name: ${{ env.SCHEMA_ARTIFACT }}
Expand All @@ -45,7 +45,7 @@ jobs:
# rename this to a valid subgraph name
SUBGRAPH_NAME: foo-bar
steps:
- uses: actions/download-artifact@v5
- uses: actions/download-artifact@v6
with:
name: ${{ needs.test.outputs.schema_artifact }}
- name: Install Rover
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Execute Gradle build
run: ./gradlew clean build graphqlGenerateSDL
- name: Upload schema artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
path: build/${{ env.SCHEMA_FILE }}
name: ${{ env.SCHEMA_ARTIFACT }}
Expand All @@ -53,7 +53,7 @@ jobs:
SUBGRAPH_NAME: foo-bar
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v5
- uses: actions/download-artifact@v6
with:
name: ${{ needs.prepare_schema.outputs.schema_artifact }}
- name: Install Rover
Expand Down
Loading