Skip to content

Commit 44e094d

Browse files
authored
Merge pull request #768 from Shopify/2024-10-auto-generated
Update Schema to `2024-10` Release
2 parents 8344577 + 230cd78 commit 44e094d

File tree

6 files changed

+6348
-2683
lines changed

6 files changed

+6348
-2683
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,18 @@ jobs:
1515
echo "API_VERSION=$API_VERSION" >> $GITHUB_ENV
1616
1717
- name: Checkout Repository
18-
uses: actions/checkout@v2
18+
uses: actions/checkout@v4
1919
with:
2020
submodules: true
2121

2222
- name: Install Ruby
2323
uses: ruby/setup-ruby@v1
2424

2525
- name: Install JDK 1.8
26-
uses: actions/setup-java@v1
26+
uses: actions/setup-java@v4
2727
with:
28-
java-version: 1.8
28+
java-version: 8
29+
distribution: temurin
2930
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml
3031
settings-path: ${{ github.workspace }} # location for the settings.xml file
3132

@@ -51,7 +52,7 @@ jobs:
5152
git commit -m "Update schema (auto-generated)"
5253
git push --set-upstream --force origin "$API_VERSION-auto-generated"
5354
54-
- uses: actions/github-script@0.9.0
55+
- uses: actions/github-script@v7
5556
with:
5657
script: |
5758
const today = new Date();

.github/workflows/deploy.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,18 @@ jobs:
1515

1616
steps:
1717
- name: Checkout Repository
18-
uses: actions/checkout@v2
18+
uses: actions/checkout@v4
1919
with:
2020
submodules: true
2121

2222
- name: Install Ruby
2323
uses: ruby/setup-ruby@v1
2424

2525
- name: Install JDK 1.8
26-
uses: actions/setup-java@v1
26+
uses: actions/setup-java@v4
2727
with:
28-
java-version: 1.8
28+
java-version: 8
29+
distribution: temurin
2930

3031
- name: Publish Package
3132
working-directory: ./MobileBuy

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,18 @@ jobs:
99

1010
steps:
1111
- name: Checkout Repository
12-
uses: actions/checkout@v2
12+
uses: actions/checkout@v4
1313

1414
- name: Create Draft Release
15-
uses: actions/github-script@0.9.0
15+
uses: actions/github-script@v7
1616
with:
1717
script: |
1818
const today = new Date();
1919
const yyyy = today.getFullYear();
2020
const mm = String(today.getMonth() + 1).padStart(2, '0');
2121
const api_version = yyyy + '-' + mm;
2222
const notes = `Updates the Mobile Buy SDK for Android with support for the \`${api_version}\` version of the Shopify Storefront API.\n\nFor more details about the changes, please see the [release notes](https://shopify.dev/api/release-notes/${api_version}#graphql-storefront-api-changes).`
23-
github.repos.createRelease({
23+
github.rest.repos.createRelease({
2424
owner: context.repo.owner,
2525
repo: context.repo.repo,
2626
name: `X.X.X [${api_version}]`,

.github/workflows/test.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,18 @@ jobs:
1414
echo "API_VERSION=$API_VERSION" >> $GITHUB_ENV
1515
1616
- name: Checkout Repository
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v4
1818
with:
1919
submodules: true
2020

2121
- name: Install Ruby
2222
uses: ruby/setup-ruby@v1
2323

2424
- name: Install JDK 1.8
25-
uses: actions/setup-java@v1
25+
uses: actions/setup-java@v4
2626
with:
27-
java-version: 1.8
27+
java-version: 8
28+
distribution: temurin
2829
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml
2930
settings-path: ${{ github.workspace }} # location for the settings.xml file
3031

MobileBuy/buy3/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION_NAME=18.0.0
1+
VERSION_NAME=18.1.0
22

33
POM_ARTIFACT_ID=buy3
44
POM_GROUP_ID=com.shopify.mobilebuysdk

0 commit comments

Comments
 (0)