diff options
author | makamys <makamys@outlook.com> | 2024-02-28 01:56:04 +0100 |
---|---|---|
committer | makamys <makamys@outlook.com> | 2024-02-28 02:05:01 +0100 |
commit | 68f0bafabf65ed9fc3c1d99101be73977b47e18a (patch) | |
tree | da997cc2e2bffbf282a91ea353f1230e7b31e46f /.github | |
parent | dcfc2738edace2ced962079e205414fafe89eab4 (diff) | |
download | Neodymium-68f0bafabf65ed9fc3c1d99101be73977b47e18a.tar.gz Neodymium-68f0bafabf65ed9fc3c1d99101be73977b47e18a.tar.bz2 Neodymium-68f0bafabf65ed9fc3c1d99101be73977b47e18a.zip |
Update CI action versions, add missing names
Integrates changes from #48
Co-Authored-By: Coccocoahelper <157546848+Coccocoahelper@users.noreply.github.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/gradle.yml | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index dd37cb2..d737a18 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -11,11 +11,14 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - name: Checkout repo + uses: actions/checkout@v4.1.1 with: fetch-depth: 0 + - name: Validate Gradle wrapper + uses: gradle/wrapper-validation-action@v2.1.1 - name: Set up JDK 1.8 - uses: actions/setup-java@v3 + uses: actions/setup-java@v4.0.0 with: distribution: 'temurin' java-version: 8 @@ -26,7 +29,8 @@ jobs: - name: Build with Gradle run: ./gradlew cleanBuildAll working-directory: publish - - uses: actions/upload-artifact@v3 + - name: Upload a build artifact + uses: actions/upload-artifact@v4.3.1 with: name: Package path: build/libs |