From d3e952bf8d7e542cc73b13fa4544b67beb703f58 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Sep 2023 21:11:47 +0000 Subject: [PATCH] chore(deps): bump actions/checkout from 4.0.0 to 4.1.0 Bumps [actions/checkout](https://github.com/actions/checkout) from 4.0.0 to 4.1.0. - [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/3df4ab11eba7bda6032a0b82a6bb43b11571feac...8ade135a41bc03ea155e62e844d188df1ea18608) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... 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 b9a16a9..46d5529 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@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.5.4 + - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # 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 e68b835..c2ebace 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@3df4ab11eba7bda6032a0b82a6bb43b11571feac + - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # Runs actions-markdownlint - uses: articulate/actions-markdownlint@v1 diff --git a/.github/workflows/generate_changelog.yml b/.github/workflows/generate_changelog.yml index 94c2f35..6dbddac 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@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.5.4 + - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.5.4 with: fetch-depth: 0 submodules: true diff --git a/.github/workflows/go-generate.yml b/.github/workflows/go-generate.yml index ee89c6a..4ded5c7 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@3df4ab11eba7bda6032a0b82a6bb43b11571feac + - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 - uses: actions/setup-go@v4 - run: go generate ./... - run: git status --ignored diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6aaedba..2d74b4d 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@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.5.4 + - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # 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@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.5.4 + - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # 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@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.5.4 + - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.5.4 with: fetch-depth: 0 ref: main diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 0083d5a..b3d4f8f 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@3df4ab11eba7bda6032a0b82a6bb43b11571feac + - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 - uses: actions/setup-go@v4 with: go-version-file: 'go.mod' @@ -48,7 +48,7 @@ jobs: - uses: actions/setup-go@v4 with: go-version: ${{ matrix.go }} - - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac + - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 - run: go test -v -coverprofile=profile.cov ./... - name: Send coverage