Skip to content

Commit

Permalink
chore(deps): update github artifact actions to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Feb 17, 2024
1 parent f88fbb2 commit 9bee8cf
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/continuous-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Build products subgraph with Gradle
run: ./gradlew :products-subgraph:clean :products-subgraph:build :products-subgraph:bootJar
- name: Upload JAR
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: products.jar
path: ./products-subgraph/build/libs/products.jar
Expand All @@ -52,7 +52,7 @@ jobs:
- name: Build reviews subgraph with Gradle
run: ./gradlew :reviews-subgraph:clean :reviews-subgraph:build :reviews-subgraph:bootJar
- name: Upload JAR
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: reviews.jar
path: ./reviews-subgraph/build/libs/reviews.jar
Expand All @@ -71,7 +71,7 @@ jobs:
- name: Compose Supergraph
run: APOLLO_ELV2_LICENSE=accept rover supergraph compose --config supergraph.yaml > supergraph.graphql
- name: Upload Supergraph config
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: supergraph.graphql
path: supergraph.graphql
Expand All @@ -86,15 +86,15 @@ jobs:
- uses: actions/checkout@v3
# we are using separate download actions as otherwise artifacts are placed in folders
- name: Download products JAR
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: products.jar
- name: Download reviews JAR
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: reviews.jar
- name: Download Supergraph config
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: supergraph.graphql
- name: Start up Supergraph
Expand Down

0 comments on commit 9bee8cf

Please sign in to comment.