From 6aa6add48487f2d8fedb681361dd4fee6d28ab84 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 26 Jan 2026 13:57:03 +0000 Subject: [PATCH] Bump actions/checkout from 5.0.1 to 6.0.2 Bumps [actions/checkout](https://github.com/actions/checkout) from 5.0.1 to 6.0.2. - [Release notes](https://github.com/actions/checkout/releases) - [Commits](https://github.com/actions/checkout/compare/v5.0.1...v6.0.2) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.2 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/00-basic.yml | 2 +- .github/workflows/00a-basic-filters.yml | 2 +- .github/workflows/03-steps.yml | 6 +++--- .github/workflows/04-environment-variables.yaml | 2 +- .github/workflows/04-environment-variables2.yaml | 4 ++-- .github/workflows/05-conditionals.yml | 2 +- .github/workflows/08-secrets.yml | 2 +- .github/workflows/09-node.js-matrix.yml | 2 +- .github/workflows/10-dotnet.yml | 2 +- .github/workflows/azure-dev.yml | 2 +- .github/workflows/docker-image.yml | 2 +- .github/workflows/lint.yml | 2 +- .github/workflows/marp-pages.yml | 2 +- .github/workflows/pr-validation.yml | 2 +- .github/workflows/super-linter.yml | 2 +- 15 files changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows/00-basic.yml b/.github/workflows/00-basic.yml index 12ec38e..c26e09e 100644 --- a/.github/workflows/00-basic.yml +++ b/.github/workflows/00-basic.yml @@ -15,7 +15,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@v6 + - uses: actions/checkout@v6.0.2 # Runs a single command using the runners shell - name: Run a one-line script diff --git a/.github/workflows/00a-basic-filters.yml b/.github/workflows/00a-basic-filters.yml index eac1241..3489125 100644 --- a/.github/workflows/00a-basic-filters.yml +++ b/.github/workflows/00a-basic-filters.yml @@ -36,7 +36,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@v6 + - uses: actions/checkout@v6.0.2 # Runs a single command using the runners shell - name: Run a one-line script diff --git a/.github/workflows/03-steps.yml b/.github/workflows/03-steps.yml index 5869b7a..5d74ab6 100644 --- a/.github/workflows/03-steps.yml +++ b/.github/workflows/03-steps.yml @@ -50,10 +50,10 @@ jobs: shell: perl {0} # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it # Reference a specific commit - - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd + - uses: actions/checkout@0c366fd6a839edf440554fa01a7085ccba70ac98 # Reference the major version of a release - - uses: actions/checkout@v6 + - uses: actions/checkout@v6.0.2 # Reference a specific version - - uses: actions/checkout@v6 + - uses: actions/checkout@v6.0.2 # Reference a branch - uses: actions/checkout@main diff --git a/.github/workflows/04-environment-variables.yaml b/.github/workflows/04-environment-variables.yaml index 20fad96..c2cf155 100644 --- a/.github/workflows/04-environment-variables.yaml +++ b/.github/workflows/04-environment-variables.yaml @@ -27,7 +27,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@v6 + - uses: actions/checkout@v6.0.2 # Runs a single command using the runners shell - name: Run a one-line script diff --git a/.github/workflows/04-environment-variables2.yaml b/.github/workflows/04-environment-variables2.yaml index 49e4bfe..496fba0 100644 --- a/.github/workflows/04-environment-variables2.yaml +++ b/.github/workflows/04-environment-variables2.yaml @@ -29,7 +29,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@v6 + - uses: actions/checkout@v6.0.2 # Runs a single command using the runners shell - name: Run a one-line script @@ -44,7 +44,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@v6 + - uses: actions/checkout@v6.0.2 # Runs a single command using the runners shell - name: Run a one-line script diff --git a/.github/workflows/05-conditionals.yml b/.github/workflows/05-conditionals.yml index b479787..f628f6d 100644 --- a/.github/workflows/05-conditionals.yml +++ b/.github/workflows/05-conditionals.yml @@ -27,7 +27,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@v6 + - uses: actions/checkout@v6.0.2 - name: Run Hello run: echo "$Greeting, $Name!" diff --git a/.github/workflows/08-secrets.yml b/.github/workflows/08-secrets.yml index 5092be5..f4d370c 100644 --- a/.github/workflows/08-secrets.yml +++ b/.github/workflows/08-secrets.yml @@ -26,7 +26,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@v6 + - uses: actions/checkout@v6.0.2 # Runs a single command using the runners shell - name: Pass via Context diff --git a/.github/workflows/09-node.js-matrix.yml b/.github/workflows/09-node.js-matrix.yml index 8eb23d8..ceae810 100644 --- a/.github/workflows/09-node.js-matrix.yml +++ b/.github/workflows/09-node.js-matrix.yml @@ -26,7 +26,7 @@ jobs: os: [ubuntu-latest, windows-latest] runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v6.0.2 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v6 with: diff --git a/.github/workflows/10-dotnet.yml b/.github/workflows/10-dotnet.yml index d841ada..57e9109 100644 --- a/.github/workflows/10-dotnet.yml +++ b/.github/workflows/10-dotnet.yml @@ -26,7 +26,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v6.0.2 - name: Setup .NET uses: actions/setup-dotnet@v5 with: diff --git a/.github/workflows/azure-dev.yml b/.github/workflows/azure-dev.yml index af7ff7f..f7d5869 100644 --- a/.github/workflows/azure-dev.yml +++ b/.github/workflows/azure-dev.yml @@ -35,7 +35,7 @@ jobs: AZURE_LOCATION: ${{ vars.AZURE_LOCATION }} steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v6.0.2 - name: Install azd uses: Azure/setup-azd@v2.2.1 diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index 608a7d7..6d5bc4c 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -23,7 +23,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v6.0.2 - name: Login to Docker Hub uses: docker/login-action@v3 with: diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 36dc5bf..49317db 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -8,7 +8,7 @@ jobs: name: Lint code runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v6.0.2 - name: Lint code run: | diff --git a/.github/workflows/marp-pages.yml b/.github/workflows/marp-pages.yml index 302c3df..a8eab7c 100644 --- a/.github/workflows/marp-pages.yml +++ b/.github/workflows/marp-pages.yml @@ -25,7 +25,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v6.0.2 - name: Copy images run: mkdir build && cp -R slides/img build/img && cp -R slides/themes build/themes diff --git a/.github/workflows/pr-validation.yml b/.github/workflows/pr-validation.yml index d0db5b0..24e606b 100644 --- a/.github/workflows/pr-validation.yml +++ b/.github/workflows/pr-validation.yml @@ -18,7 +18,7 @@ jobs: deploy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v6.0.2 - uses: azure/login@v2 name: Sign in to Azure with: diff --git a/.github/workflows/super-linter.yml b/.github/workflows/super-linter.yml index 4b0801e..3b13e02 100644 --- a/.github/workflows/super-linter.yml +++ b/.github/workflows/super-linter.yml @@ -25,7 +25,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v6.0.2 with: # super-linter needs the full git history to get the # list of files that changed across commits