Skip to content

Commit

Permalink
Update workflow dependencies (#5229)
Browse files Browse the repository at this point in the history
Due to
https://github.blog/changelog/2024-11-05-notice-of-breaking-changes-for-github-actions/.
I made the following changes:
`ubuntu-20.04` -> `ubuntu-24.04`
`actions/checkout@v3` -> `actions/checkout@v4`
`actions/setup-java@v3` -> `actions/setup-java@v4`
`actions/upload-artifact@v3` -> `actions/upload-artifact@v4`
  • Loading branch information
Omico authored Feb 11, 2025
1 parent 70e833f commit 56c055d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/gradle-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, macos-14, windows-2022]
os: [ubuntu-24.04, macos-14, windows-2022]
gradle: [7.4, 8.10.2]
agp: [8.1.0, 8.5.0, 8.8.0-alpha08]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'corretto'
java-version: '17'
Expand All @@ -33,9 +33,9 @@ jobs:
./gradlew assemble
./gradlew --continue :preview-rpc:test :compose:test ':compose:test-Gradle(${{ matrix.gradle }})-Agp(${{ matrix.agp }})'
- name: Upload Reports
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Test-Reports
name: Test-Reports-${{ matrix.os }}-Gradle-${{ matrix.gradle }}-Agp${{ matrix.agp }}
path: gradle-plugins/compose/build/reports
if: always()
- name: Print summary
Expand Down

0 comments on commit 56c055d

Please sign in to comment.