From 31990b7e5bc18771dbfa646c63df73f109d35e39 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Mar 2024 22:01:14 +0000 Subject: [PATCH] chore(deps): bump actions/checkout from 4.1.1 to 4.1.2 Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.2. - [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/b4ffde65f46336ab88eb53be808477a3936bae11...9bb56186c3b09b4f86b1c65136769dd318469633) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/dependabot_changelog.yml | 2 +- .github/workflows/doc-lint.yml | 2 +- .github/workflows/generate_changelog.yml | 2 +- .github/workflows/go-generate.yml | 2 +- .github/workflows/release.yml | 6 +++--- .github/workflows/tests.yml | 4 ++-- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/dependabot_changelog.yml b/.github/workflows/dependabot_changelog.yml index 94d0224..e21a4b6 100644 --- a/.github/workflows/dependabot_changelog.yml +++ b/.github/workflows/dependabot_changelog.yml @@ -13,7 +13,7 @@ jobs: - name: Fetch dependabot metadata id: dependabot-metadata uses: dependabot/fetch-metadata@c9c4182bf1b97f5224aee3906fd373f6b61b4526 # v1.6.0 - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.5.4 + - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.5.4 - run: | gh pr checkout $PR_URL cat << EOF > .changelog/$PR_NUMBER.txt diff --git a/.github/workflows/doc-lint.yml b/.github/workflows/doc-lint.yml index 4a3bb0c..b1dcf02 100644 --- a/.github/workflows/doc-lint.yml +++ b/.github/workflows/doc-lint.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 + - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # Runs actions-markdownlint - uses: articulate/actions-markdownlint@v1 diff --git a/.github/workflows/generate_changelog.yml b/.github/workflows/generate_changelog.yml index 39e0801..b062885 100644 --- a/.github/workflows/generate_changelog.yml +++ b/.github/workflows/generate_changelog.yml @@ -8,7 +8,7 @@ jobs: if: github.event.pull_request.merged || github.event_name == 'workflow_dispatch' runs-on: ubuntu-latest steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.5.4 + - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.5.4 with: fetch-depth: 0 submodules: true diff --git a/.github/workflows/go-generate.yml b/.github/workflows/go-generate.yml index 5610eb7..ffd8356 100644 --- a/.github/workflows/go-generate.yml +++ b/.github/workflows/go-generate.yml @@ -13,7 +13,7 @@ jobs: go-generate: runs-on: ubuntu-latest steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 + - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 - uses: actions/setup-go@v5 - run: go generate ./... - run: git status --ignored diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f8bdcf9..614a42c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,7 +9,7 @@ jobs: release-notes: runs-on: ubuntu-latest steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.5.4 + - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.5.4 with: fetch-depth: 0 - name: Generate Release Notes @@ -45,7 +45,7 @@ jobs: outputs: tag: ${{ steps.highest-version-tag.outputs.tag }} steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.5.4 + - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.5.4 with: # Allow tag to be fetched when ref is a commit fetch-depth: 0 @@ -66,7 +66,7 @@ jobs: permissions: contents: write steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.5.4 + - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.5.4 with: fetch-depth: 0 ref: main diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 414e749..2cd6083 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -24,7 +24,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 5 steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 + - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 - uses: actions/setup-go@v5 with: go-version-file: 'go.mod' @@ -46,7 +46,7 @@ jobs: - uses: actions/setup-go@v5 with: go-version: ${{ matrix.go }} - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 + - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 - run: go test -v -coverprofile=profile.cov ./... - name: Send coverage