Skip to content
Open
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
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
timeout-minutes: 30
runs-on: windows-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up JDK 18
Expand All @@ -25,7 +25,7 @@ jobs:
java-version: '18'
distribution: 'temurin'
- name: Setup Gradle to generate and submit dependency graphs
uses: gradle/actions/setup-gradle@v4
uses: gradle/actions/setup-gradle@v5
with:
dependency-graph: generate-and-submit
- name: Build binaries
Expand All @@ -34,7 +34,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
- name: Publish binaries
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: 'oslp-test-tool'
path: 'composeApp/build/compose/binaries/main-release/'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/gradle-wrapper.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
upgradeGradleWrapper:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up Git credentials
Expand All @@ -22,7 +22,7 @@ jobs:
git config --global user.name "IOTFDP"
git config --global url."https://unused-username:${TOKEN}@github.com/".insteadOf "https://github.com/"
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
uses: gradle/actions/setup-gradle@v5
- name: Upgrade Gradle Wrapper
run: ./gradlew upgradeGradleWrapperAll --info --stacktrace
env:
Expand Down
Loading