From bca7ceaef0e63f343f83f525d5ecbe79fa76201c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Aug 2025 04:14:58 +0000 Subject: [PATCH] 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/cd-workflow.yml | 2 +- .github/workflows/ci-workflow.yml | 4 ++-- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/environments-secrets.yml | 6 +++--- .github/workflows/gh-actions-usage-report.yml | 2 +- .github/workflows/gh-dependency-review.yml | 2 +- .github/workflows/github-actions-demo.yml | 2 +- .github/workflows/required-workflow.yml | 2 +- .github/workflows/simple-workflow.yml | 2 +- .github/workflows/super-linter.yml | 2 +- .github/workflows/use-custom-actions.yml | 4 ++-- 11 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/cd-workflow.yml b/.github/workflows/cd-workflow.yml index f8a46600..40d8ef2a 100644 --- a/.github/workflows/cd-workflow.yml +++ b/.github/workflows/cd-workflow.yml @@ -20,7 +20,7 @@ jobs: name: Build runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Set up Node.js uses: actions/setup-node@v4 diff --git a/.github/workflows/ci-workflow.yml b/.github/workflows/ci-workflow.yml index 14ff2afe..339a8243 100644 --- a/.github/workflows/ci-workflow.yml +++ b/.github/workflows/ci-workflow.yml @@ -28,7 +28,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 # Configure our node environment according to matrix - name: Setup node ${{ matrix.node-version }} on ${{ matrix.os }} @@ -55,7 +55,7 @@ jobs: url: https://test.company.com steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 # Add here the download-artifact step diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 91573f1a..a431ac40 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -38,7 +38,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/environments-secrets.yml b/.github/workflows/environments-secrets.yml index 2b128265..549624ae 100644 --- a/.github/workflows/environments-secrets.yml +++ b/.github/workflows/environments-secrets.yml @@ -35,7 +35,7 @@ jobs: - run: echo "Run id = ${{ github.run_id }}" - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Step that uses the DEV environment run: echo "Deployment to ${{ env.URL1 }}..." @@ -60,7 +60,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Step that uses the TEST environment run: echo "Deployment to ${{ env.DOCS_URL }}..." @@ -85,7 +85,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Step that uses the PROD environment run: echo "Deployment to ${{ env.PROD_URL }}..." diff --git a/.github/workflows/gh-actions-usage-report.yml b/.github/workflows/gh-actions-usage-report.yml index 3835ca2f..07d96e83 100644 --- a/.github/workflows/gh-actions-usage-report.yml +++ b/.github/workflows/gh-actions-usage-report.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Get Token id: get_workflow_token diff --git a/.github/workflows/gh-dependency-review.yml b/.github/workflows/gh-dependency-review.yml index c7653f0a..1397ebf5 100644 --- a/.github/workflows/gh-dependency-review.yml +++ b/.github/workflows/gh-dependency-review.yml @@ -10,6 +10,6 @@ jobs: runs-on: ubuntu-latest steps: - name: 'Checkout Repository' - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: 'Dependency Review' uses: actions/dependency-review-action@v4 \ No newline at end of file diff --git a/.github/workflows/github-actions-demo.yml b/.github/workflows/github-actions-demo.yml index e8540e80..cea53447 100644 --- a/.github/workflows/github-actions-demo.yml +++ b/.github/workflows/github-actions-demo.yml @@ -11,7 +11,7 @@ jobs: - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!" - run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." - name: Check out repository code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." - run: echo "🖥️ The workflow is now ready to test your code on the runner." - name: List files in the repository diff --git a/.github/workflows/required-workflow.yml b/.github/workflows/required-workflow.yml index df56d39a..332bc1e0 100644 --- a/.github/workflows/required-workflow.yml +++ b/.github/workflows/required-workflow.yml @@ -11,7 +11,7 @@ jobs: - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!" - run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." - name: Check out repository code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." - run: echo "🖥️ The workflow is now ready to test your code on the runner." - name: List files in the repository diff --git a/.github/workflows/simple-workflow.yml b/.github/workflows/simple-workflow.yml index 47f9d8e9..55402a5c 100644 --- a/.github/workflows/simple-workflow.yml +++ b/.github/workflows/simple-workflow.yml @@ -25,7 +25,7 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 # Runs a single command using the runners shell - name: Run a one-line script diff --git a/.github/workflows/super-linter.yml b/.github/workflows/super-linter.yml index 90b5d495..2585854a 100644 --- a/.github/workflows/super-linter.yml +++ b/.github/workflows/super-linter.yml @@ -40,7 +40,7 @@ jobs: # Checkout the code base # ########################## - name: Checkout Code - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: # Full git history is needed to get a proper list of changed files within `super-linter` fetch-depth: 0 diff --git a/.github/workflows/use-custom-actions.yml b/.github/workflows/use-custom-actions.yml index 55beb2bf..2e44921a 100644 --- a/.github/workflows/use-custom-actions.yml +++ b/.github/workflows/use-custom-actions.yml @@ -15,7 +15,7 @@ jobs: js-custom-actions: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - run: echo "🎉 Running the JS actions" @@ -38,7 +38,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - run: echo "🎉 Running the Docker actions"