From 56443d883b15cef0eb2c9b0ac5e8ac4d48b677b8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Sep 2025 15:27:34 +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/0-inicio.yml | 4 ++-- .github/workflows/1-crea-primer-workflow.yml | 4 ++-- .github/workflows/2-conoce-triggers.yml | 4 ++-- .github/workflows/3-aprende-expresiones.yml | 4 ++-- .github/workflows/4-usa-contextos.yml | 4 ++-- .github/workflows/5-uso-variables.yml | 4 ++-- .github/workflows/blank.yml | 2 +- 7 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/0-inicio.yml b/.github/workflows/0-inicio.yml index 8bb7a01..e4ffe47 100644 --- a/.github/workflows/0-inicio.yml +++ b/.github/workflows/0-inicio.yml @@ -26,7 +26,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - id: obtener_paso run: | echo "paso_actual=$(cat ./.github/script/STEP)" >> $GITHUB_OUTPUT @@ -52,7 +52,7 @@ jobs: steps: # We'll need to check out the repository so that we can edit the README - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 # Let's get all the branches diff --git a/.github/workflows/1-crea-primer-workflow.yml b/.github/workflows/1-crea-primer-workflow.yml index b22aae3..b74da18 100644 --- a/.github/workflows/1-crea-primer-workflow.yml +++ b/.github/workflows/1-crea-primer-workflow.yml @@ -26,7 +26,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - id: obtener_paso run: | echo "paso_actual=$(cat ./.github/script/STEP)" >> $GITHUB_OUTPUT @@ -52,7 +52,7 @@ jobs: steps: # We'll need to check out the repository so that we can edit the README - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 # Let's get all the branches diff --git a/.github/workflows/2-conoce-triggers.yml b/.github/workflows/2-conoce-triggers.yml index fb73b5b..c1bbc63 100644 --- a/.github/workflows/2-conoce-triggers.yml +++ b/.github/workflows/2-conoce-triggers.yml @@ -26,7 +26,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - id: obtener_paso run: | echo "paso_actual=$(cat ./.github/script/STEP)" >> $GITHUB_OUTPUT @@ -52,7 +52,7 @@ jobs: steps: # We'll need to check out the repository so that we can edit the README - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 # Let's get all the branches diff --git a/.github/workflows/3-aprende-expresiones.yml b/.github/workflows/3-aprende-expresiones.yml index e695452..dfc684c 100644 --- a/.github/workflows/3-aprende-expresiones.yml +++ b/.github/workflows/3-aprende-expresiones.yml @@ -26,7 +26,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - id: obtener_paso run: | echo "paso_actual=$(cat ./.github/script/STEP)" >> $GITHUB_OUTPUT @@ -52,7 +52,7 @@ jobs: steps: # We'll need to check out the repository so that we can edit the README - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 # Let's get all the branches diff --git a/.github/workflows/4-usa-contextos.yml b/.github/workflows/4-usa-contextos.yml index 1a9c380..362cfa6 100644 --- a/.github/workflows/4-usa-contextos.yml +++ b/.github/workflows/4-usa-contextos.yml @@ -26,7 +26,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - id: obtener_paso run: | echo "paso_actual=$(cat ./.github/script/STEP)" >> $GITHUB_OUTPUT @@ -52,7 +52,7 @@ jobs: steps: # We'll need to check out the repository so that we can edit the README - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 # Let's get all the branches diff --git a/.github/workflows/5-uso-variables.yml b/.github/workflows/5-uso-variables.yml index c77a035..ed00639 100644 --- a/.github/workflows/5-uso-variables.yml +++ b/.github/workflows/5-uso-variables.yml @@ -26,7 +26,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - id: obtener_paso run: | echo "paso_actual=$(cat ./.github/script/STEP)" >> $GITHUB_OUTPUT @@ -52,7 +52,7 @@ jobs: steps: # We'll need to check out the repository so that we can edit the README - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 # Let's get all the branches diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml index 01502b1..ca89be9 100644 --- a/.github/workflows/blank.yml +++ b/.github/workflows/blank.yml @@ -23,7 +23,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