From 2db802b14f67b8b6c3c47433d57d84a1044c301a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 28 Jul 2026 00:23:25 +0000 Subject: [PATCH] Bump actions/checkout from 7.0.0 to 7.0.1 Bumps [actions/checkout](https://github.com/actions/checkout) from 7.0.0 to 7.0.1. - [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/9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0...3d3c42e5aac5ba805825da76410c181273ba90b1) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 7.0.1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/golangci-lint.yaml | 2 +- .github/workflows/license-checker.yaml | 2 +- .github/workflows/mac-artifact.yml | 2 +- .github/workflows/pre-release.yaml | 6 +++--- .github/workflows/promote-image.yaml | 2 +- .github/workflows/snyk-scan.yml | 2 +- .github/workflows/tests.yml | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/golangci-lint.yaml b/.github/workflows/golangci-lint.yaml index 32fb646..66090bb 100644 --- a/.github/workflows/golangci-lint.yaml +++ b/.github/workflows/golangci-lint.yaml @@ -21,7 +21,7 @@ jobs: egress-policy: audit - name: Checkout sources - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - name: Get go version from go.mod run: | diff --git a/.github/workflows/license-checker.yaml b/.github/workflows/license-checker.yaml index 05ba316..8036259 100644 --- a/.github/workflows/license-checker.yaml +++ b/.github/workflows/license-checker.yaml @@ -20,7 +20,7 @@ jobs: with: egress-policy: audit - - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - name: Check License Header uses: apache/skywalking-eyes@61275cc80d0798a405cb070f7d3a8aaf7cf2c2c1 # v0.8.0 with: diff --git a/.github/workflows/mac-artifact.yml b/.github/workflows/mac-artifact.yml index e7ffd35..25e7a91 100644 --- a/.github/workflows/mac-artifact.yml +++ b/.github/workflows/mac-artifact.yml @@ -38,7 +38,7 @@ jobs: cond: ${{ inputs.submodule != '' }} if_true: aerospike-tools/${{ inputs.submodule }} # In this case we are expecting to checkout the tools package. if_false: absctl - - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: path: ${{ steps.checkout-dir.outputs.value }} fetch-depth: 0 diff --git a/.github/workflows/pre-release.yaml b/.github/workflows/pre-release.yaml index d9b7a5c..b7058d9 100644 --- a/.github/workflows/pre-release.yaml +++ b/.github/workflows/pre-release.yaml @@ -21,7 +21,7 @@ jobs: egress-policy: audit - name: Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: fetch-depth: 1 - name: Set up Go @@ -110,7 +110,7 @@ jobs: egress-policy: audit - name: Checkout Code - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: fetch-depth: 1 ref: ${{ github.ref }} @@ -500,7 +500,7 @@ jobs: - name: Set up Docker Buildx uses: step-security/setup-buildx-action@6997872a55d77391e51b87609556578131f44402 # v4.1.0 - name: Checkout Code - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: fetch-depth: 1 ref: ${{ github.ref }} diff --git a/.github/workflows/promote-image.yaml b/.github/workflows/promote-image.yaml index 90b6947..2b3ecb2 100644 --- a/.github/workflows/promote-image.yaml +++ b/.github/workflows/promote-image.yaml @@ -18,7 +18,7 @@ jobs: egress-policy: audit - name: Checkout Code - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: fetch-depth: 0 fetch-tags: true diff --git a/.github/workflows/snyk-scan.yml b/.github/workflows/snyk-scan.yml index 2d098fb..be58dd9 100644 --- a/.github/workflows/snyk-scan.yml +++ b/.github/workflows/snyk-scan.yml @@ -21,7 +21,7 @@ jobs: egress-policy: audit - name: Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - name: Run Snyk to check for vulnerabilities uses: snyk/actions/golang@9adf32b1121593767fc3c057af55b55db032dc04 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ef39a9b..cc9c466 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -40,7 +40,7 @@ jobs: with: egress-policy: audit - - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - name: Get go version from go.mod run: |