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
2 changes: 1 addition & 1 deletion .github/workflows/post-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: gooddata/github-actions-public/codeartifact/get-token@master
- uses: actions/checkout@v6
- name: cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
key: kotlin-build
path: .gradle
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pre-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ jobs:
- uses: gooddata/github-actions-public/codeartifact/get-token@master
- uses: actions/checkout@v6
- name: cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
key: kotlin-build
path: .gradle
- run: |
./gradlew clean build compileTestKotlin -x test --info
- name: Archive build outputs
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: build-artifact
path: '**/build/**/*'
Expand All @@ -38,14 +38,14 @@ jobs:
steps:
- uses: actions/checkout@v6
- name: cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
key: kotlin-build
path: .gradle
- run: |
./gradlew test --info
- name: Archive test outputs
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: test-artifact
path: '**/build/test-results/**/TEST-*.xml'