From 212ff2e7e128b34bc892d37ee6bd0a6046a81bc8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Sep 2023 10:09:57 -0600 Subject: [PATCH] build(deps): Bump actions/checkout from 3 to 4 (#2007) 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/cd.yml | 2 +- .github/workflows/elixir.yml | 14 +++++++------- .github/workflows/integration-tests.yml | 4 ++-- .github/workflows/kotlin.yml | 2 +- .github/workflows/rust.yml | 8 ++++---- .github/workflows/static-analysis.yml | 2 +- .github/workflows/swift.yml | 2 +- .github/workflows/terraform.yml | 2 +- 8 files changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 399aa4d72..066c7278a 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -38,7 +38,7 @@ jobs: - uses: hashicorp/setup-terraform@v2 with: terraform_version: ${{ env.TERRAFORM_VERSION }} - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: ${{ github.event.workflow_run.head_branch }} # - name: "Push Changed Application Tags" diff --git a/.github/workflows/elixir.yml b/.github/workflows/elixir.yml index ee23f9c26..7f3be1fed 100644 --- a/.github/workflows/elixir.yml +++ b/.github/workflows/elixir.yml @@ -41,7 +41,7 @@ jobs: with: otp-version: "26.0.2" elixir-version: "1.15.2" - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/cache@v3 name: Elixir Deps Cache env: @@ -92,7 +92,7 @@ jobs: with: otp-version: "26.0.2" elixir-version: "1.15.2" - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/cache@v3 name: Elixir Deps Cache env: @@ -143,7 +143,7 @@ jobs: with: otp-version: "26.0.2" elixir-version: "1.15.2" - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/cache@v3 name: Elixir Deps Cache env: @@ -199,7 +199,7 @@ jobs: --health-timeout 5s --health-retries 5 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install package dependencies run: | sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list' @@ -322,7 +322,7 @@ jobs: - uses: pnpm/action-setup@v2 with: version: 8 - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/cache@v3 name: Elixir Deps Cache env: @@ -424,7 +424,7 @@ jobs: uses: docker/setup-qemu-action@v2 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - id: auth uses: google-github-actions/auth@v1 with: @@ -484,7 +484,7 @@ jobs: uses: docker/setup-qemu-action@v2 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - id: auth uses: google-github-actions/auth@v1 with: diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index a8ccde896..904bc8e67 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 - name: Build images @@ -42,7 +42,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 - name: Build images diff --git a/.github/workflows/kotlin.yml b/.github/workflows/kotlin.yml index e778d1acd..528b54af8 100644 --- a/.github/workflows/kotlin.yml +++ b/.github/workflows/kotlin.yml @@ -23,7 +23,7 @@ jobs: run: working-directory: ./kotlin/android steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-java@v3 with: distribution: temurin diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index c982eb466..ca1cacdf3 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -46,7 +46,7 @@ jobs: packages: -p firezone-client-connlib runs-on: ${{ matrix.runs-on }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 # This implicitly triggers installation of the toolchain in the `rust-toolchain.toml` file. # If we don't do this here, our cache action will compute a cache key based on the Rust version shipped on GitHub's runner which might differ from the one we use. @@ -90,7 +90,7 @@ jobs: run: working-directory: ./rust/relay steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 # This implicitly triggers installation of the toolchain in the `rust-toolchain.toml` file. # If we don't do this here, our cache action will compute a cache key based on the Rust version shipped on GitHub's runner which might differ from the one we use. @@ -121,7 +121,7 @@ jobs: uses: docker/setup-qemu-action@v2 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - id: auth uses: google-github-actions/auth@v1 with: @@ -180,7 +180,7 @@ jobs: uses: docker/setup-qemu-action@v2 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - id: auth uses: google-github-actions/auth@v1 with: diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml index 7924b534d..20d7de20d 100644 --- a/.github/workflows/static-analysis.yml +++ b/.github/workflows/static-analysis.yml @@ -9,7 +9,7 @@ jobs: static-analysis_linter: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-python@v2 with: python-version: "3.9" diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml index 6c1fa479d..2652a2e6c 100644 --- a/.github/workflows/swift.yml +++ b/.github/workflows/swift.yml @@ -36,7 +36,7 @@ jobs: run: working-directory: ./swift steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: rustup show - uses: Swatinem/rust-cache@v2 with: diff --git a/.github/workflows/terraform.yml b/.github/workflows/terraform.yml index 3c7f18823..90fc09f9f 100644 --- a/.github/workflows/terraform.yml +++ b/.github/workflows/terraform.yml @@ -32,7 +32,7 @@ jobs: - uses: hashicorp/setup-terraform@v2 with: terraform_version: ${{ env.TERRAFORM_VERSION }} - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Check Formatting working-directory: terraform run: |