Skip to content

Commit

Permalink
Update github action versions. (#320)
Browse files Browse the repository at this point in the history
---------

Signed-off-by: Agustin Alba Chicar <[email protected]>
  • Loading branch information
agalbachicar authored May 21, 2024
1 parent 28a82d7 commit 1a03b01
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- uses: ros-tooling/[email protected]
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
path: ${{ env.ROS_WS }}/src/${{ env.PACKAGE_NAME }}
# clone public dependencies
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
echo "bundle_file_name=${CURRENT_BUNDLE_TARBALL_NAME}" >> $GITHUB_ENV
echo "Compressing tarball ${CURRENT_BUNDLE_TARBALL_NAME}";
tar -czvf ${CURRENT_BUNDLE_TARBALL_NAME} ${BUNDLE_NAME};
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
if: ${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' }}
with:
name: binary_underlay
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/maliput_full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
container:
image: ubuntu:20.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ros-tooling/[email protected]
- uses: ros-tooling/[email protected]
id: action_ros_ci_step
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/manylinux_image_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Login to GitHub Container Registry
run: echo ${{ secrets.GITHUB_TOKEN }} | docker login ghcr.io -u ${{ github.repository_owner }} --password-stdin
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sanitizers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- uses: ros-tooling/[email protected]
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
path: ${{ env.ROS_WS }}/src/${{ env.PACKAGE_NAME }}
- name: clang 8 install
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/scan_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- uses: ros-tooling/[email protected]
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
path: ${{ env.ROS_WS }}/src/${{ env.PACKAGE_NAME }}
- name: clang 8 install
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
${PACKAGE_NAME}/tools/run_scan_build.py \
--event-handlers=console_direct+;
# upload artifact
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
if: failure()
with:
name: scan-build-output
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/workspace_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
container:
image: ubuntu:20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
path: ${{ env.ROS_WS }}/src/${{ env.PACKAGE_NAME }}
- name: install dependencies
Expand Down
2 changes: 1 addition & 1 deletion wheel_generation/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ RUN echo "source /colcon_builds/install/setup.bash" >> /root/.bashrc
##########################################################################
# Install vcstool
##########################################################################
RUN /opt/_internal/cpython-3.8.18/bin/pip install vcstool
RUN /opt/python/cp38-cp38/bin/pip install vcstool

##########################################################################
# Final config
Expand Down

0 comments on commit 1a03b01

Please sign in to comment.