From bb53d0899631ac97c968d9a4e269dda88afcded7 Mon Sep 17 00:00:00 2001 From: aboyko Date: Tue, 20 Sep 2022 11:55:35 -0400 Subject: [PATCH] Update dependency github action versions --- .github/workflows/build-asciidoc.yml | 2 +- .github/workflows/check-license-headers.yml | 2 +- .github/workflows/mvn-build.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-asciidoc.yml b/.github/workflows/build-asciidoc.yml index ab3b7d09c..18e1c244c 100644 --- a/.github/workflows/build-asciidoc.yml +++ b/.github/workflows/build-asciidoc.yml @@ -10,7 +10,7 @@ jobs: name: Asciidoctoring the docs to pretty HTML! steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Get build container id: adocbuild uses: avattathil/asciidoctor-action@master diff --git a/.github/workflows/check-license-headers.yml b/.github/workflows/check-license-headers.yml index 6a3cf9390..a397824bc 100644 --- a/.github/workflows/check-license-headers.yml +++ b/.github/workflows/check-license-headers.yml @@ -9,6 +9,6 @@ jobs: check-license-lines: runs-on: ubuntu-latest steps: - - uses: actions/checkout@main + - uses: actions/checkout@v3 - name: Check License Lines uses: kt3k/license_checker@v1.0.6 \ No newline at end of file diff --git a/.github/workflows/mvn-build.yml b/.github/workflows/mvn-build.yml index d3e51cf4f..10f95d3ca 100644 --- a/.github/workflows/mvn-build.yml +++ b/.github/workflows/mvn-build.yml @@ -10,9 +10,9 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up JDK 17 - uses: actions/setup-java@v2 + uses: actions/setup-java@v3 with: java-version: '17' distribution: 'adopt'