From 2cdb77c1b31302ef62bc46adfc0a8df1dad2f8b8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 14 Sep 2023 05:18:14 +0000 Subject: [PATCH] chore(deps): Bump actions/checkout from 3 to 4 (#1110) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
Release notes

Sourced from actions/checkout's releases.

v4.0.0

What's Changed

New Contributors

Full Changelog: https://github.com/actions/checkout/compare/v3...v4.0.0

v3.6.0

What's Changed

New Contributors

Full Changelog: https://github.com/actions/checkout/compare/v3.5.3...v3.6.0

v3.5.3

What's Changed

New Contributors

Full Changelog: https://github.com/actions/checkout/compare/v3...v3.5.3

v3.5.2

What's Changed

Full Changelog: https://github.com/actions/checkout/compare/v3.5.1...v3.5.2

v3.5.1

What's Changed

New Contributors

... (truncated)

Changelog

Sourced from actions/checkout's changelog.

Changelog

v4.0.0

v3.6.0

v3.5.3

v3.5.2

v3.5.1

v3.5.0

v3.4.0

v3.3.0

v3.2.0

v3.1.0

v3.0.2

v3.0.1

... (truncated)

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/checkout&package-manager=github_actions&previous-version=3&new-version=4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
--- .github/workflows/autopr.yml | 2 +- .github/workflows/check-generated.yml | 2 +- .github/workflows/docker.yml | 2 +- .github/workflows/linkchecker.yml | 2 +- .github/workflows/lint.yml | 2 +- .github/workflows/proto.yml | 4 ++-- .github/workflows/release-sims.yml | 8 ++++---- .github/workflows/sims.yml | 10 +++++----- .github/workflows/sims_normal.yml | 8 ++++---- .github/workflows/tag.yml | 2 +- .github/workflows/test.yml | 16 ++++++++-------- 11 files changed, 29 insertions(+), 29 deletions(-) diff --git a/.github/workflows/autopr.yml b/.github/workflows/autopr.yml index 57fe6ba8c0..3119dc1889 100644 --- a/.github/workflows/autopr.yml +++ b/.github/workflows/autopr.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out repository code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: pull-request uses: repo-sync/pull-request@v2 diff --git a/.github/workflows/check-generated.yml b/.github/workflows/check-generated.yml index 1aa1b4f375..190507c228 100644 --- a/.github/workflows/check-generated.yml +++ b/.github/workflows/check-generated.yml @@ -20,7 +20,7 @@ jobs: go-version: '1.20' - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 1 diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index c16d36cb40..286e026f52 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -15,7 +15,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - name: login to the registry diff --git a/.github/workflows/linkchecker.yml b/.github/workflows/linkchecker.yml index 23749b51c0..29b2f9f65b 100644 --- a/.github/workflows/linkchecker.yml +++ b/.github/workflows/linkchecker.yml @@ -6,7 +6,7 @@ jobs: markdown-link-check: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: gaurav-nelson/github-action-markdown-link-check@1.0.15 with: folder-path: "docs" diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 5a9d7ff280..72b94506a9 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -20,7 +20,7 @@ jobs: - uses: actions/setup-go@v4.0.1 with: go-version: '1.20' - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: technote-space/get-diff-action@v6.1.2 with: PATTERNS: | diff --git a/.github/workflows/proto.yml b/.github/workflows/proto.yml index 9766d8c07b..301f348241 100644 --- a/.github/workflows/proto.yml +++ b/.github/workflows/proto.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 5 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: DoozyX/clang-format-lint-action@v0.16 with: source: '.' @@ -23,7 +23,7 @@ jobs: name: check generated swagger files runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-go@v4.0.1 with: go-version: '1.20' diff --git a/.github/workflows/release-sims.yml b/.github/workflows/release-sims.yml index e966613260..3497b2d9e1 100644 --- a/.github/workflows/release-sims.yml +++ b/.github/workflows/release-sims.yml @@ -26,7 +26,7 @@ jobs: runs-on: ubuntu-latest if: "!contains(github.event.head_commit.message, 'skip-sims') && contains(github.event.pull_request.labels.*.name, 'release')" steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-go@v4.0.1 with: go-version: '1.20' @@ -52,7 +52,7 @@ jobs: runs-on: ubuntu-latest needs: [build, install-runsim] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-go@v4.0.1 with: go-version: '1.20' @@ -72,7 +72,7 @@ jobs: runs-on: ubuntu-latest needs: [build, install-runsim, test-sim-multi-seed-long-part1] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-go@v4.0.1 with: go-version: '1.20' @@ -92,7 +92,7 @@ jobs: runs-on: ubuntu-latest needs: [build, install-runsim, test-sim-multi-seed-long-part2] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-go@v4.0.1 with: go-version: '1.20' diff --git a/.github/workflows/sims.yml b/.github/workflows/sims.yml index c7d6ee27be..8ec0ead932 100644 --- a/.github/workflows/sims.yml +++ b/.github/workflows/sims.yml @@ -23,7 +23,7 @@ jobs: runs-on: ubuntu-latest if: "!contains(github.event.head_commit.message, 'skip-sims')" steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-go@v4.0.1 with: go-version: '1.20' @@ -51,7 +51,7 @@ jobs: runs-on: ubuntu-latest needs: [build, install-runsim] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-go@v4.0.1 with: go-version: '1.20' @@ -78,7 +78,7 @@ jobs: runs-on: ubuntu-latest needs: [build, install-runsim] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-go@v4.0.1 with: go-version: '1.20' @@ -107,7 +107,7 @@ jobs: runs-on: ubuntu-latest needs: [build, install-runsim] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-go@v4.0.1 with: go-version: '1.20' @@ -136,7 +136,7 @@ jobs: runs-on: ubuntu-latest needs: [build, install-runsim] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-go@v4.0.1 with: go-version: '1.20' diff --git a/.github/workflows/sims_normal.yml b/.github/workflows/sims_normal.yml index 50e0e2b4fc..b012dcf941 100644 --- a/.github/workflows/sims_normal.yml +++ b/.github/workflows/sims_normal.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest if: "!contains(github.event.head_commit.message, 'skip-sims')" steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-go@v4.0.1 with: go-version: '1.20' @@ -38,7 +38,7 @@ jobs: runs-on: ubuntu-latest needs: [build, install-runsim] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-go@v4.0.1 with: go-version: '1.20' @@ -56,7 +56,7 @@ jobs: runs-on: ubuntu-latest needs: [build, install-runsim] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-go@v4.0.1 with: go-version: '1.20' @@ -74,7 +74,7 @@ jobs: runs-on: ubuntu-latest needs: [build, install-runsim] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-go@v4.0.1 with: go-version: '1.20' diff --git a/.github/workflows/tag.yml b/.github/workflows/tag.yml index e089b61180..6e9feb7be7 100644 --- a/.github/workflows/tag.yml +++ b/.github/workflows/tag.yml @@ -9,7 +9,7 @@ jobs: release: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - run: git fetch --force --tags diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 49c1d0aae2..c0a64f4660 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -48,7 +48,7 @@ jobs: steps: - run: sudo apt update && sudo apt install -y ${{ matrix.package }} qemu-user-binfmt if: "matrix.package != ''" - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-go@v4.0.1 with: go-version: '1.20' @@ -67,7 +67,7 @@ jobs: test-cosmovisor: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-go@v4.0.1 with: go-version: '1.20' @@ -88,7 +88,7 @@ jobs: split-test-files: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Create a file with all the pkgs run: go list ./... > pkgs.txt - name: Split pkgs into 4 files @@ -119,7 +119,7 @@ jobs: matrix: part: ["00", "01", "02", "03"] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-go@v4.0.1 with: go-version: '1.20' @@ -156,7 +156,7 @@ jobs: runs-on: ubuntu-latest needs: tests steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: technote-space/get-diff-action@v6.1.2 with: PATTERNS: | @@ -207,7 +207,7 @@ jobs: matrix: part: ["00", "01", "02", "03"] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-go@v4.0.1 with: go-version: '1.20' @@ -264,7 +264,7 @@ jobs: # runs-on: ubuntu-latest # timeout-minutes: 10 # steps: -# - uses: actions/checkout@v3 +# - uses: actions/checkout@v4 # - uses: actions/setup-go@v2.1.3 # with: # go-version: '1.20' @@ -289,7 +289,7 @@ jobs: # runs-on: ubuntu-latest # timeout-minutes: 10 # steps: -# - uses: actions/checkout@v3 +# - uses: actions/checkout@v4 # - name: build docker image # run: | # docker build --pull --rm -f "Dockerfile" -t simapp:latest "."