From 26604dbaeb63fbc81b277aa271adc66fe84d1817 Mon Sep 17 00:00:00 2001 From: Donal Fellows Date: Mon, 12 Apr 2021 16:41:40 +0100 Subject: [PATCH 1/2] Updated publisher action --- .github/workflows/publish.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c9275fb0b6..c30368412e 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -76,8 +76,7 @@ jobs: cp -vaT $PY_DOC_DIR $DEPLOY_DIR/python - name: Deploy to GitHub Pages - uses: JamesIves/github-pages-deploy-action@3.7.1 + uses: JamesIves/github-pages-deploy-action@4.0.0 with: - github_token: ${{ secrets.GITHUB_TOKEN }} branch: gh-pages folder: ${{ env.DEPLOY_DIR }} From bf85957023eb263d1ac55a8299d64d4d0639e5b2 Mon Sep 17 00:00:00 2001 From: Donal Fellows Date: Mon, 12 Apr 2021 17:08:47 +0100 Subject: [PATCH 2/2] Add a dependabot rule for keeping actions up to date --- .github/dependabot.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000000..8a13cd2b89 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,32 @@ +# Copyright (c) 2021 The University of Manchester +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +# Please see the documentation for all configuration options: +# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + labels: + - "bug" + - "dependabot" + milestone: 22 # This is the *ID* for the 7.0.0 milestone + reviewers: + - "Christian-B" + - "dkfellows" + - "rowleya"