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
4 changes: 2 additions & 2 deletions .github/workflows/merge_master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/.github/Gemfile
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-java@v3
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 17
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/.github/Gemfile
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-java@v3
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 17
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@ jobs:
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/.github/Gemfile
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-java@v3
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 17
cache: 'gradle'
- uses: ruby/setup-ruby@v1
with:
ruby-version: '2.6'
ruby-version: head
Copy link

Copilot AI Oct 13, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using 'head' for ruby-version introduces instability as it points to the latest development version. Consider using a specific stable version like '3.2' or '3.1' for more predictable builds.

Suggested change
ruby-version: head
ruby-version: 3.2

Copilot uses AI. Check for mistakes.
bundler-cache: true
# - name: Cache Gradle
# if: always()
Expand Down Expand Up @@ -47,17 +47,17 @@ jobs:
./gradlew check jacocoTestReport --no-daemon -Dorg.gradle.daemon=false
- name: Run Danger
if: always()
uses: MeilCli/danger-action@v5
uses: MeilCli/danger-action@v6
with:
plugins_file: '.github/Gemfile'
install_path: 'vendor/bundle'
# install_path: 'vendor/bundle'
Copy link

Copilot AI Oct 13, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Commenting out the install_path parameter without explanation could break the Danger action if it expects this path. Verify that MeilCli/danger-action@v6 no longer requires this parameter or provide the correct path.

Suggested change
# install_path: 'vendor/bundle'
install_path: 'vendor/bundle'

Copilot uses AI. Check for mistakes.
danger_file: '.github/Dangerfile'
danger_id: 'danger-pr'
env:
DANGER_GITHUB_API_TOKEN: ${{ secrets.DANGER_GITHUB_TOKEN }}
- name: Upload test reports
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: test-reports
path: '**/build/reports/tests/'
Expand Down
Loading