Skip to content

Commit

Permalink
ci update checkout action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
PangKW-weston committed Aug 1, 2024
1 parent 66a8594 commit dfe3305
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ros-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
image: ros:melodic-robot
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y git libasio-dev
- name: Create catkin workspace
Expand All @@ -36,7 +36,7 @@ jobs:
image: ros:noetic-robot
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y git libasio-dev
- name: Create catkin workspace
Expand All @@ -53,7 +53,7 @@ jobs:
image: ros:foxy
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y git libasio-dev
- name: Create colcon workspace
Expand All @@ -70,7 +70,7 @@ jobs:
image: ros:humble
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y git libasio-dev
- name: Create colcon workspace
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/standalone-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
os: [ ubuntu-22.04, ubuntu-20.04 ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt-get install -y build-essential cmake libasio-dev
- name: Build and pack
Expand Down

0 comments on commit dfe3305

Please sign in to comment.