Skip to content

Commit

Permalink
Update to actions/checkout@v4, enable dependabot (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
cottsay authored Sep 27, 2024
1 parent 0e55c2e commit 316bc45
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
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
- 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

0 comments on commit 316bc45

Please sign in to comment.