From 4bd17897bd7f92fb29affddf577bd4315be620d3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 6 Sep 2023 16:16:08 +0200 Subject: [PATCH] chore(deps): bump actions/checkout from 3 to 4 (#1098) 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)
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/benchmark.yml | 2 +- .github/workflows/db-tests.yml | 2 +- .github/workflows/docker.yml | 2 +- .github/workflows/examples.yml | 6 +++--- .github/workflows/gh-pages.yml | 2 +- .github/workflows/gnoland.yml | 6 +++--- .github/workflows/gnovm.yml | 4 ++-- .github/workflows/misc.yml | 6 +++--- .github/workflows/tm2.yml | 4 ++-- 9 files changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index bef2bf70f33..8b8c6f618c5 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -13,7 +13,7 @@ jobs: runs-on: [self-hosted, Linux, X64, benchmark-v1] steps: - name: checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 1 - uses: actions/setup-go@v4 diff --git a/.github/workflows/db-tests.yml b/.github/workflows/db-tests.yml index 65d469ccff2..081a7517725 100644 --- a/.github/workflows/db-tests.yml +++ b/.github/workflows/db-tests.yml @@ -46,6 +46,6 @@ jobs: sudo dpkg -i *.deb # test ./pkgs/db - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: test ./tm2/pkg/db run: go test -tags ${{ matrix.tags }} ./tm2/pkg/db/... diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 490577aad69..139c2569dc4 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build main Docker image env: diff --git a/.github/workflows/examples.yml b/.github/workflows/examples.yml index b94b0b91374..4353682122a 100644 --- a/.github/workflows/examples.yml +++ b/.github/workflows/examples.yml @@ -30,7 +30,7 @@ jobs: - uses: actions/setup-go@v4 with: go-version: ${{ matrix.go-version }} - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: go install -v ./gnovm/cmd/gno - run: go run ./gnovm/cmd/gno precompile --verbose ./examples - run: go run ./gnovm/cmd/gno build --verbose ./examples @@ -48,7 +48,7 @@ jobs: - uses: actions/setup-go@v4 with: go-version: ${{ matrix.go-version }} - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: go install -v ./gnovm/cmd/gno - run: go run ./gnovm/cmd/gno test --verbose ./examples lint: @@ -65,7 +65,7 @@ jobs: - uses: actions/setup-go@v4 with: go-version: ${{ matrix.go-version }} - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: go install -v ./gnovm/cmd/gno # testing official directories, basically examples/ minus examples/.../x/. - run: go run ./gnovm/cmd/gno lint --verbose ./examples/gno.land/p diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index 7e32aee27d7..2233132e745 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -19,7 +19,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: "cd misc/devdeps && make install" - run: "cd misc/gendocs && make gen" - run: "find docs/ -type f -ls" diff --git a/.github/workflows/gnoland.yml b/.github/workflows/gnoland.yml index e7221ef5398..3c74d87a5da 100644 --- a/.github/workflows/gnoland.yml +++ b/.github/workflows/gnoland.yml @@ -38,7 +38,7 @@ jobs: - uses: actions/setup-go@v4 with: go-version: ${{ matrix.go-version }} - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: go install working-directory: gno.land run: GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go install ./cmd/${{ matrix.program }} @@ -61,7 +61,7 @@ jobs: - uses: actions/setup-go@v4 with: go-version: ${{ matrix.go-version }} - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: test working-directory: gno.land run: | @@ -84,7 +84,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 10 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 # TODO: setup docker caching - run: make test.docker - run: docker logs int_gnoland || true diff --git a/.github/workflows/gnovm.yml b/.github/workflows/gnovm.yml index 793696601cc..a841fb0b849 100644 --- a/.github/workflows/gnovm.yml +++ b/.github/workflows/gnovm.yml @@ -37,7 +37,7 @@ jobs: - uses: actions/setup-go@v4 with: go-version: ${{ matrix.go-version }} - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: go install working-directory: gnovm run: ${{ matrix.goenv }} go install ./cmd/${{ matrix.program }} @@ -65,7 +65,7 @@ jobs: - uses: actions/setup-go@v4 with: go-version: ${{ matrix.go-version }} - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: test working-directory: gnovm run: | diff --git a/.github/workflows/misc.yml b/.github/workflows/misc.yml index df396816231..7ece5b5158d 100644 --- a/.github/workflows/misc.yml +++ b/.github/workflows/misc.yml @@ -19,7 +19,7 @@ jobs: go-version: 1.21.x - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Lint uses: golangci/golangci-lint-action@v3 @@ -40,7 +40,7 @@ jobs: run: sudo apt-get install -y make - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 # prefill dependencies so that mod messages don't show up in make output - name: Fetch dependencies @@ -67,7 +67,7 @@ jobs: go-version: 1.20.x - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Check go.mods run: | diff --git a/.github/workflows/tm2.yml b/.github/workflows/tm2.yml index 8c12b93249a..875a61af822 100644 --- a/.github/workflows/tm2.yml +++ b/.github/workflows/tm2.yml @@ -31,7 +31,7 @@ jobs: - uses: actions/setup-go@v4 with: go-version: ${{ matrix.go-version }} - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: go install working-directory: tm2 run: GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go install ${{ matrix.program }} @@ -54,7 +54,7 @@ jobs: - uses: actions/setup-go@v4 with: go-version: ${{ matrix.go-version }} - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: test working-directory: tm2 run: |