diff --git a/.github/workflows/android-ci.yml b/.github/workflows/android-ci.yml index 0b828ffd4..b1f3809d8 100644 --- a/.github/workflows/android-ci.yml +++ b/.github/workflows/android-ci.yml @@ -21,7 +21,7 @@ jobs: java_version: [8] steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Install JDK ${{ matrix.java_version }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 486307c1b..87633882d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: name: Test JDK ${{ matrix.java }}, ${{ matrix.os }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up JDK uses: actions/setup-java@v2 with: diff --git a/.github/workflows/combine-prs.yml b/.github/workflows/combine-prs.yml index 5d4d05cad..01c2af705 100644 --- a/.github/workflows/combine-prs.yml +++ b/.github/workflows/combine-prs.yml @@ -95,7 +95,7 @@ jobs: console.log('Combined: ' + combined); return combined # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 # Creates a branch with other PR branches merged together diff --git a/.github/workflows/gradle-wrapper-validation.yml b/.github/workflows/gradle-wrapper-validation.yml index 93d9ecb76..63e79f166 100644 --- a/.github/workflows/gradle-wrapper-validation.yml +++ b/.github/workflows/gradle-wrapper-validation.yml @@ -17,5 +17,5 @@ jobs: run: working-directory: jsonschema2pojo-gradle-plugin/example/android steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: gradle/wrapper-validation-action@v1