From e873f9508f445e0de0623a5c113728dd29703b34 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 4 Sep 2025 12:04:43 +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/build.yml | 4 ++-- .github/workflows/lint.yml | 12 ++++++------ .github/workflows/publish.yml | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0848a3f..7a0ffc3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,7 +22,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Check out repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Setup node environment (for building) uses: actions/setup-node@v4 @@ -51,7 +51,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Check out repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Build docker image run: | diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 97c1bd0..4e0e286 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -21,7 +21,7 @@ jobs: if: github.actor != 'dependabot[bot]' steps: - name: Check out repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 @@ -32,7 +32,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Check out repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Lint markdown files uses: avto-dev/markdown-lint@v1.5.0 @@ -43,7 +43,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Check out repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Lint yaml files uses: ibiqlik/action-yamllint@v3.1.1 @@ -52,7 +52,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Check out repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Setup node environment (for building) uses: actions/setup-node@v4 @@ -82,7 +82,7 @@ jobs: if: github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' steps: - name: Check out repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Check for new dependencies uses: hiwelo/new-dependencies-action@1.0.1 @@ -132,7 +132,7 @@ jobs: if: github.actor != 'dependabot[bot]' steps: - name: Check out repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Lint dockerfile (hadolint) uses: hadolint/hadolint-action@v3.2.0 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 37cb7a4..65d908b 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Check out repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Extract metadata (tags, labels) for Docker id: docker_metadata