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/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
outputs:
version: ${{ steps.version.outputs.version }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: Read version from config.json
id: version
run: echo version=$(node -p "require('./package.json').version") >> $GITHUB_OUTPUT
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/functional.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
java: [ '11', '17', '21', '25' ]

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
ref: ${{ github.event.pull_request.head.sha }}
# Gradle will detect the JVM installation from the ubuntu-latest image and use it
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
name: Check source code formatting
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- run: ./gradlew :sdk:checkFormat :examples:checkFormat --continue

test:
Expand All @@ -21,7 +21,7 @@ jobs:
java: ['11', '17', '21', '25']

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
# Gradle will detect the JVM installation from the ubuntu-latest image and use it
# includes execution of unit tests
- run: ./gradlew build -PjavaVersion=${{ matrix.java }} --stacktrace
Expand All @@ -30,7 +30,7 @@ jobs:
runs-on: ubuntu-latest
name: Jitpack build smoke test
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- run: ./gradlew clean build -PjavaVersion=11 --stacktrace
env:
JITPACK: true
Expand Down