From f28dd5b14a7ff2c76fa626d113a0176d6f214280 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 5 Oct 2024 22:05:58 +0000 Subject: [PATCH] Bump actions/checkout from 3.0.2 to 4.2.0 Bumps [actions/checkout](https://github.com/actions/checkout) from 3.0.2 to 4.2.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/v3.0.2...v4.2.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 2 +- .github/workflows/resyntax-analyze.yml | 2 +- .github/workflows/resyntax-autofixer.yml | 2 +- .github/workflows/resyntax-submit-review.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cb2d355ba..7b00cbaf0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: racket-variant: ["BC", "CS"] enable-contracts: [true, false] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v4.2.0 - uses: Bogdanp/setup-racket@v1.11 with: architecture: x64 diff --git a/.github/workflows/resyntax-analyze.yml b/.github/workflows/resyntax-analyze.yml index f070f7669..b6da074e4 100644 --- a/.github/workflows/resyntax-analyze.yml +++ b/.github/workflows/resyntax-analyze.yml @@ -27,7 +27,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v4.2.0 # See https://github.com/actions/checkout/issues/118. with: fetch-depth: 0 diff --git a/.github/workflows/resyntax-autofixer.yml b/.github/workflows/resyntax-autofixer.yml index 732e0f913..98cef3c0d 100644 --- a/.github/workflows/resyntax-autofixer.yml +++ b/.github/workflows/resyntax-autofixer.yml @@ -15,7 +15,7 @@ jobs: contents: write steps: - name: Checkout code - uses: actions/checkout@v3.0.2 + uses: actions/checkout@v4.2.0 - name: Install Racket uses: Bogdanp/setup-racket@v1.9.1 with: diff --git a/.github/workflows/resyntax-submit-review.yml b/.github/workflows/resyntax-submit-review.yml index 3569c2805..6cdb98215 100644 --- a/.github/workflows/resyntax-submit-review.yml +++ b/.github/workflows/resyntax-submit-review.yml @@ -22,7 +22,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v4.2.0 - name: Download Resyntax analysis # This uses a github script instead of the download-artifact action because # that action doesn't work for artifacts uploaded by other workflows. See