From 6867816d84824aec7deb2dd863756061c95db02b Mon Sep 17 00:00:00 2001 From: Garrett Campbell Date: Fri, 30 Jun 2023 11:27:24 -0400 Subject: [PATCH 1/2] attempt specific permissions --- .github/workflows/locker.yml | 1 + .github/workflows/more-info-needed-closer.yml | 1 + .github/workflows/question-closer.yml | 1 + 3 files changed, 3 insertions(+) diff --git a/.github/workflows/locker.yml b/.github/workflows/locker.yml index 1cea72a69..48ea6eebd 100644 --- a/.github/workflows/locker.yml +++ b/.github/workflows/locker.yml @@ -11,6 +11,7 @@ on: jobs: main: runs-on: ubuntu-latest + permissions: write-all steps: - name: Checkout Actions uses: actions/checkout@v2 diff --git a/.github/workflows/more-info-needed-closer.yml b/.github/workflows/more-info-needed-closer.yml index df1bf4b13..c9f1154b1 100644 --- a/.github/workflows/more-info-needed-closer.yml +++ b/.github/workflows/more-info-needed-closer.yml @@ -11,6 +11,7 @@ on: jobs: main: runs-on: ubuntu-latest + permissions: write-all steps: - name: Checkout Actions uses: actions/checkout@v2 diff --git a/.github/workflows/question-closer.yml b/.github/workflows/question-closer.yml index 8437f188d..ac7ac40c8 100644 --- a/.github/workflows/question-closer.yml +++ b/.github/workflows/question-closer.yml @@ -11,6 +11,7 @@ on: jobs: main: runs-on: ubuntu-latest + permissions: write-all steps: - name: Checkout Actions uses: actions/checkout@v2 From 655f21f3b18b2fd794e5136bc287e9a060d923f6 Mon Sep 17 00:00:00 2001 From: Garrett Campbell Date: Wed, 5 Jul 2023 12:08:20 -0400 Subject: [PATCH 2/2] update node version for pipelines, to see if it fixes --- .github/actions/locker/action.yml | 2 +- .github/actions/staleCloser/action.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/locker/action.yml b/.github/actions/locker/action.yml index 3d50d3a3a..bd089f3ed 100644 --- a/.github/actions/locker/action.yml +++ b/.github/actions/locker/action.yml @@ -29,5 +29,5 @@ inputs: readonly: description: If true, changes are not applied. runs: - using: 'node12' + using: 'node16' main: '../lib/locker/index.js' diff --git a/.github/actions/staleCloser/action.yml b/.github/actions/staleCloser/action.yml index 90ef0e990..a152617cb 100644 --- a/.github/actions/staleCloser/action.yml +++ b/.github/actions/staleCloser/action.yml @@ -43,5 +43,5 @@ inputs: readonly: description: If true, changes are not applied. runs: - using: 'node12' + using: 'node16' main: '../lib/staleCloser/index.js'