build(deps): bump actions/cache from 2.1.6 to 4.0.2 #909
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: IntelliJ Plugin Verifier | |
on: | |
# Trigger the workflow on pushes to only the 'master' branch (this avoids duplicate checks being run e.g. for dependabot pull requests) | |
push: | |
branches: [master] | |
paths: [ 'intellij-plugin-verifier/**', '.github/workflows/intellij-plugin-verifier.yml' ] | |
# Trigger the workflow on any pull request | |
pull_request: | |
paths: [ 'intellij-plugin-verifier/**', '.github/workflows/intellij-plugin-verifier.yml' ] | |
jobs: | |
# Run Gradle Wrapper Validation Action to verify the wrapper's checksum | |
gradleValidation: | |
name: Gradle Wrapper | |
runs-on: ubuntu-latest | |
steps: | |
# Check out current repository | |
- name: Fetch Sources | |
uses: actions/checkout@v2.3.4 | |
# Validate wrapper | |
- name: Gradle Wrapper Validation | |
uses: gradle/wrapper-validation-action@v1.0.4 | |
# Run tests | |
test: | |
name: Test | |
needs: gradleValidation | |
runs-on: ubuntu-latest | |
steps: | |
# Setup Java 11 environment for the next steps | |
- name: Setup Java | |
uses: actions/setup-java@v2 | |
with: | |
distribution: zulu | |
java-version: 11 | |
# Check out current repository | |
- name: Fetch Sources | |
uses: actions/checkout@v2.3.4 | |
# Cache Gradle dependencies | |
- name: Setup Gradle Dependencies Cache | |
uses: actions/cache@v4.0.2 | |
with: | |
path: ~/.gradle/caches | |
key: ${{ runner.os }}-gradle-caches-${{ hashFiles('**/*.gradle', '**/*.gradle.kts', 'gradle.properties') }} | |
# Cache Gradle Wrapper | |
- name: Setup Gradle Wrapper Cache | |
uses: actions/cache@v4.0.2 | |
with: | |
path: ~/.gradle/wrapper | |
key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }} | |
# Publish dev lib versions | |
- name: Publish Dev Version | |
run: | | |
cd plugins-verifier-service | |
./gradlew :intellij-plugin-structure:publishToMavenLocal | |
# Run tests | |
- name: Run Tests | |
run: | | |
cd intellij-plugin-verifier | |
./gradlew test | |
- name: Collect Test Results | |
if: ${{ failure() }} | |
uses: actions/upload-artifact@v2 | |
with: | |
name: test-results-intellij-plugin-verifier | |
path: ${{ github.workspace }}/intellij-plugin-verifier/build/reports/tests/test/ |