Skip to content

Commit

Permalink
🛠️ Bump actions/checkout from 3 to 4 (#773)
Browse files Browse the repository at this point in the history
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](actions/checkout@v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
(cherry picked from commit 51a42b0)

# Conflicts:
#	.github/workflows/ci.yaml
#	.github/workflows/deploy.yml
#	.github/workflows/docker-images.yml
  • Loading branch information
dependabot[bot] authored and mergify[bot] committed Sep 27, 2023
1 parent f32fc20 commit 419f1d8
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,11 @@ jobs:
name: ${{ matrix.env.IMAGE }}
runs-on: ubuntu-latest
steps:
<<<<<<< HEAD
- uses: actions/checkout@v2
=======
- uses: actions/checkout@v4
>>>>>>> 51a42b0 (🛠️ Bump actions/checkout from 3 to 4 (#773))
with:
fetch-depth: 0
- name: cache upstream_ws
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
htmlproofer:
runs-on: ubuntu-latest
steps:
<<<<<<< HEAD
- uses: actions/checkout@v3
with:
fetch-depth: 0
Expand All @@ -25,6 +26,9 @@ jobs:
with:
python-version: '3.8'
cache: 'pip'
=======
- uses: actions/checkout@v4
>>>>>>> 51a42b0 (🛠️ Bump actions/checkout from 3 to 4 (#773))

- name: Install Python dependencies
run: |
Expand Down Expand Up @@ -55,7 +59,7 @@ jobs:
container:
image: ${{ matrix.container }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: 'main'

Expand Down Expand Up @@ -88,7 +92,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'
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,14 @@ jobs:
PUSH: ${{ (github.ref_name == 'main') }}

steps:
<<<<<<< HEAD
=======
- name: Checkout distro branch
if: ${{ matrix.ROS_DISTRO != 'rolling' }}
uses: actions/checkout@v4
with:
ref: ${{ matrix.ROS_DISTRO }}
>>>>>>> 51a42b0 (🛠️ Bump actions/checkout from 3 to 4 (#773))
- name: Set lower case for container name
run: |
echo "GH_IMAGE_LC=${GH_IMAGE,,}" >>${GITHUB_ENV}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 419f1d8

Please sign in to comment.