From 01d365289d753a0e5153c2c43ac6e2b4b802c59d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Dec 2025 09:28:21 +0000 Subject: [PATCH] Bump actions/checkout from 4 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [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...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' 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..240b9c0 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@v6 - 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@v6 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..cb83b57 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@v6 - 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@v6 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..396bdb8 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@v6 - 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@v6 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..8ab7583 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@v6 - 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@v6 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..b60ac5f 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@v6 - 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@v6 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..fe4dd66 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@v6 - 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@v6 with: fetch-depth: 0 # Let's get all the branches diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml index 01502b1..01274eb 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@v6 # Runs a single command using the runners shell - name: Run a one-line script