From 316bc45f6d870a661132bc7af1e4d7ecf58360f7 Mon Sep 17 00:00:00 2001 From: Scott K Logan Date: Fri, 27 Sep 2024 13:50:42 -0500 Subject: [PATCH] Update to actions/checkout@v4, enable dependabot (#6) --- .github/dependabot.yaml | 7 +++++++ .github/workflows/build-variants.yaml | 9 +++++---- 2 files changed, 12 insertions(+), 4 deletions(-) create mode 100644 .github/dependabot.yaml diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml new file mode 100644 index 0000000..23c4cb3 --- /dev/null +++ b/.github/dependabot.yaml @@ -0,0 +1,7 @@ +--- +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" diff --git a/.github/workflows/build-variants.yaml b/.github/workflows/build-variants.yaml index 797fa75..ba97e44 100644 --- a/.github/workflows/build-variants.yaml +++ b/.github/workflows/build-variants.yaml @@ -1,3 +1,4 @@ +--- name: Build Variants on: @@ -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 @@ -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 @@ -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 @@ -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