From 5fc000c59d6d5a0597c795f75e80936f100fd4d9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Aug 2025 07:20:03 +0000 Subject: [PATCH] build(deps): bump actions/checkout from 4 to 5 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [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/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci_release.yml | 8 ++++---- .github/workflows/reusable_dockerfile_lint.yml | 2 +- .github/workflows/reusable_dockerfile_pipeline.yml | 6 +++--- .github/workflows/semantic_release.yml | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci_release.yml b/.github/workflows/ci_release.yml index b2de3a1..9422f7e 100644 --- a/.github/workflows/ci_release.yml +++ b/.github/workflows/ci_release.yml @@ -38,13 +38,13 @@ jobs: yamllint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: ./.github/actions/yamllint markdown-lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: ./.github/actions/markdown-lint # Make a release if @@ -56,7 +56,7 @@ jobs: if: ${{ github.event_name == 'workflow_dispatch' }} permissions: "write-all" steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Version Release uses: ./.github/actions/version-release with: @@ -70,7 +70,7 @@ jobs: # runs-on: ubuntu-latest # steps: # - name: Check out the repo - # uses: actions/checkout@v4 + # uses: actions/checkout@v5 # - uses: rollkit/.github/.github/actions/docker-publish@master # with: diff --git a/.github/workflows/reusable_dockerfile_lint.yml b/.github/workflows/reusable_dockerfile_lint.yml index 8a1b7ed..83b4c2c 100644 --- a/.github/workflows/reusable_dockerfile_lint.yml +++ b/.github/workflows/reusable_dockerfile_lint.yml @@ -18,7 +18,7 @@ jobs: hadolint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: hadolint/hadolint-action@v3.1.0 with: dockerfile: ${{ inputs.dockerfile }} diff --git a/.github/workflows/reusable_dockerfile_pipeline.yml b/.github/workflows/reusable_dockerfile_pipeline.yml index 267fe7c..947af30 100644 --- a/.github/workflows/reusable_dockerfile_pipeline.yml +++ b/.github/workflows/reusable_dockerfile_pipeline.yml @@ -35,7 +35,7 @@ jobs: not_a_fork: ${{ steps.setting_logic.outputs.not_a_fork }} steps: - name: Checkout - uses: "actions/checkout@v4" + uses: "actions/checkout@v5" - name: Add vars to ENV id: setting_env @@ -147,7 +147,7 @@ jobs: # runs-on: "ubuntu-latest" # steps: # - name: Checkout - # uses: "actions/checkout@v4" + # uses: "actions/checkout@v5" # - name: Build # uses: docker/build-push-action@v6 @@ -226,7 +226,7 @@ jobs: - name: Checkout if: ${{ steps.run_check.outputs.run == 'true'}} - uses: "actions/checkout@v4" + uses: "actions/checkout@v5" - name: Login to ${{ matrix.registry.name }} if: ${{ steps.run_check.outputs.run == 'true'}} diff --git a/.github/workflows/semantic_release.yml b/.github/workflows/semantic_release.yml index c5f1d5d..0052c61 100644 --- a/.github/workflows/semantic_release.yml +++ b/.github/workflows/semantic_release.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Configure Semantic Release # Work around for non npm project # REF: https://github.com/cycjimmy/semantic-release-action/issues/115#issuecomment-1817264419