From 586173426becaff56c1d9a8a71377b02f5d39d4c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 Sep 2023 08:09:08 +0000 Subject: [PATCH] build(deps): bump actions/checkout from 3 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/codeql.yml | 2 +- .github/workflows/docker-build-push.yml | 2 +- .github/workflows/github-page.yml | 2 +- .github/workflows/maven-build.yml | 2 +- .github/workflows/maven-deploy.yml | 2 +- .github/workflows/release.yml | 6 +++--- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index b245bcb21..69b32ee9e 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -40,7 +40,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/docker-build-push.yml b/.github/workflows/docker-build-push.yml index 0b378487f..cc725a9ca 100644 --- a/.github/workflows/docker-build-push.yml +++ b/.github/workflows/docker-build-push.yml @@ -29,7 +29,7 @@ jobs: name: Build docker image runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: docker/setup-buildx-action@v2 - name: 'Set up GraalVM' diff --git a/.github/workflows/github-page.yml b/.github/workflows/github-page.yml index 823eebb65..16e5666fe 100644 --- a/.github/workflows/github-page.yml +++ b/.github/workflows/github-page.yml @@ -24,7 +24,7 @@ jobs: concurrency: group: ${{ github.workflow }}-${{ github.ref }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: true # Fetch Hugo themes (true OR recursive) fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod diff --git a/.github/workflows/maven-build.yml b/.github/workflows/maven-build.yml index 16855448e..07c02a041 100644 --- a/.github/workflows/maven-build.yml +++ b/.github/workflows/maven-build.yml @@ -28,7 +28,7 @@ jobs: name: Build and analyze runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: 'Set up JDK' uses: actions/setup-java@v3 diff --git a/.github/workflows/maven-deploy.yml b/.github/workflows/maven-deploy.yml index d7eaf4898..b48336ac1 100644 --- a/.github/workflows/maven-deploy.yml +++ b/.github/workflows/maven-deploy.yml @@ -28,7 +28,7 @@ jobs: contents: write steps: - name: 'Checkout GitHub repository' - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: clean: true diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d103790e5..60e120217 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -38,7 +38,7 @@ jobs: RELEASE_VERSION: ${{ steps.version.outputs.RELEASE_VERSION }} steps: - name: 'Checkout GitHub repository' - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: clean: true @@ -101,7 +101,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: 'Checkout GitHub repository' - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ needs.set-release-version.outputs.HEAD }} fetch-depth: 0 @@ -148,7 +148,7 @@ jobs: runs-on: ubuntu-latest steps: - name: 'Checkout GitHub repository' - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ needs.set-release-version.outputs.HEAD }} fetch-depth: 0