From 52a484817f024a2941dd7416c0f850439df45fb5 Mon Sep 17 00:00:00 2001 From: Spenser Black Date: Mon, 12 Oct 2020 10:20:55 -0400 Subject: [PATCH 1/2] Check GitHub Actions versions --- .github/dependabot.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 9cca59495..7aa4d0142 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,4 +4,8 @@ updates: directory: "/" schedule: interval: "daily" + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: daily open-pull-requests-limit: 10 From d98485d0d3174b9c1ab6dad3fa5f6f42f04bd4bc Mon Sep 17 00:00:00 2001 From: Spenser Black Date: Mon, 12 Oct 2020 10:22:33 -0400 Subject: [PATCH 2/2] Use actions/checkout v2 for Rustfmt Allows changes to behavior of this action to be more visible as dependabot updates it --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 92b4ba437..7b937d0bc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,7 +38,7 @@ jobs: name: Rustfmt runs-on: ubuntu-latest steps: - - uses: actions/checkout@master + - uses: actions/checkout@v2 - name: Install Rust uses: actions-rs/toolchain@v1 with: