Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to actions/checkout@v4, enable dependabot #6

Merged
merged 1 commit into from
Sep 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
9 changes: 5 additions & 4 deletions .github/workflows/build-variants.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
name: Build Variants

on:
Expand All @@ -10,7 +11,7 @@ jobs:
build-ros-dev-tools:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A personal choice: these I tend to replace the version tags on GitHub actions by the commit hash to help with possible supply chain attacks. Leave that up to you here.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oof, we're not doing that anywhere right now, and I'm pretty sure it isn't compatible with dependabot. We should bring that up at the next infra meeting if it's something you think is worth pursuing.

- name: Setup Earthly
run: |
sudo wget 'https://github.com/earthly/earthly/releases/latest/download/earthly-linux-amd64' -O /usr/local/bin/earthly
Expand All @@ -22,7 +23,7 @@ jobs:
build-ros-build-essential:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup Earthly
run: |
sudo wget 'https://github.com/earthly/earthly/releases/latest/download/earthly-linux-amd64' -O /usr/local/bin/earthly
Expand All @@ -35,7 +36,7 @@ jobs:
runs-on: ubuntu-latest
needs: [build-ros-build-essential, build-ros-dev-tools]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup Earthly
run: |
sudo wget 'https://github.com/earthly/earthly/releases/latest/download/earthly-linux-amd64' -O /usr/local/bin/earthly
Expand All @@ -46,7 +47,7 @@ jobs:
runs-on: ubuntu-latest
needs: [build-ros-build-essential, build-ros-dev-tools]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup Earthly
run: |
sudo wget 'https://github.com/earthly/earthly/releases/latest/download/earthly-linux-amd64' -O /usr/local/bin/earthly
Expand Down