From 51a42b01db8c18c3daff463628c11c4fe7ff9873 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 27 Sep 2023 12:47:43 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9B=A0=EF=B8=8F=20Bump=20actions/checkout?= =?UTF-8?q?=20from=203=20to=204=20(#773)?= 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](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/ci.yaml | 2 +- .github/workflows/deploy.yml | 6 +++--- .github/workflows/docker-images.yml | 2 +- .github/workflows/format.yml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 1a5273763f..05bc97555e 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -35,7 +35,7 @@ jobs: name: ${{ matrix.env.IMAGE }} runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - name: cache upstream_ws diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index fa20828935..1fa8bc20d5 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -19,7 +19,7 @@ jobs: container: image: moveit/moveit2:rolling-source steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install Python dependencies run: | @@ -55,7 +55,7 @@ jobs: container: image: ${{ matrix.container }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: 'main' @@ -88,7 +88,7 @@ jobs: runs-on: ubuntu-latest needs: upload_site_artifacts steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 ref: 'main' diff --git a/.github/workflows/docker-images.yml b/.github/workflows/docker-images.yml index 9c3d3503a9..d62821cf15 100644 --- a/.github/workflows/docker-images.yml +++ b/.github/workflows/docker-images.yml @@ -21,7 +21,7 @@ jobs: steps: - name: Checkout distro branch if: ${{ matrix.ROS_DISTRO != 'rolling' }} - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ matrix.ROS_DISTRO }} - name: Set lower case for container name diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml index b0df333662..58e58bc8b1 100644 --- a/.github/workflows/format.yml +++ b/.github/workflows/format.yml @@ -19,7 +19,7 @@ jobs: name: Format runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-python@v4 with: python-version: '3.10'