diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..57370551 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,10 @@ +# Set update schedule for GitHub Actions + +version: 2 +updates: + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + # Check for updates to GitHub Actions every weekday + interval: "daily" diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 27c1c4d0..97fbcef4 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -6,6 +6,6 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v2.3.1 - run: touch index.bs - run: make online=1 diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 9e091d7f..1795477a 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -10,9 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 - with: - persist-credentials: false + uses: actions/checkout@v2.3.1 - name: Build run: | @@ -20,9 +18,7 @@ jobs: make online=1 - name: Deploy - uses: JamesIves/github-pages-deploy-action@3.7.1 + uses: JamesIves/github-pages-deploy-action@4.1.0 with: - GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} - BRANCH: gh-pages - FOLDER: . - CLEAN: true + branch: gh-pages + folder: .