diff --git a/.github/workflows/TagBot.yml b/.github/workflows/TagBot.yml index 70ab4b2..a9de4f6 100644 --- a/.github/workflows/TagBot.yml +++ b/.github/workflows/TagBot.yml @@ -4,6 +4,22 @@ on: types: - created workflow_dispatch: + inputs: + lookback: + default: "14" +permissions: + actions: read + checks: read + contents: write + deployments: read + issues: read + discussions: read + packages: read + pages: read + pull-requests: read + repository-projects: read + security-events: read + statuses: read jobs: TagBot: if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot' @@ -12,5 +28,6 @@ jobs: - uses: JuliaRegistries/TagBot@v1 with: token: ${{ secrets.GITHUB_TOKEN }} + # Edit the following line to reflect the actual name of the GitHub Secret containing your private key ssh: ${{ secrets.DOCUMENTER_KEY }} - lookback: 14 + diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b85c636..6d02f63 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,18 +24,18 @@ jobs: # - '1.6' - '1' R: - - '4.0' + - '4' os: # - ubuntu-latest # linux currently doesn't work because of lib issues - macOS-latest - - windows-latest + # - windows-latest # Windows compiles *everything* and takes far too long arch: - x64 steps: - name: Checkout uses: actions/checkout@v2 - name: R Setup - uses: r-lib/actions/setup-r@v1 + uses: r-lib/actions/setup-r@v2 with: r-version: ${{ matrix.R }} - name: R Dependencies