Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/community-contribution-label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
exit 1
fi
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: learningequality/.github
path: .github-repo
Expand All @@ -30,7 +30,7 @@ jobs:
app-id: ${{ secrets.LE_BOT_APP_ID }}
private-key: ${{ secrets.LE_BOT_PRIVATE_KEY }}
- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: '3.x'
- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/contributor-issue-comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
app-id: ${{ secrets.LE_BOT_APP_ID }}
private-key: ${{ secrets.LE_BOT_PRIVATE_KEY }}
- name: Checkout .github repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: learningequality/.github
ref: main
Expand All @@ -50,7 +50,7 @@ jobs:
run: yarn install --frozen-lockfile
- name: Run script
id: script
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
github-token: ${{ steps.generate-token.outputs.token }}
script: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/contributor-pr-reply.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
app-id: ${{ secrets.LE_BOT_APP_ID }}
private-key: ${{ secrets.LE_BOT_PRIVATE_KEY }}
- name: Checkout .github repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: learningequality/.github
ref: main
Expand All @@ -47,7 +47,7 @@ jobs:
run: yarn install --frozen-lockfile
- name: Run script
id: script
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
github-token: ${{ steps.generate-token.outputs.token }}
script: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/holiday-message.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
app-id: ${{ secrets.LE_BOT_APP_ID }}
private-key: ${{ secrets.LE_BOT_PRIVATE_KEY }}
- name: Checkout .github repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: learningequality/.github
ref: main
Expand All @@ -47,7 +47,7 @@ jobs:
run: yarn install --frozen-lockfile
- name: Run script
id: script
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
github-token: ${{ steps.generate-token.outputs.token }}
script: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/is-contributor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
app-id: ${{ secrets.LE_BOT_APP_ID }}
private-key: ${{ secrets.LE_BOT_PRIVATE_KEY }}
- name: Checkout .github repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: learningequality/.github
ref: main
Expand All @@ -45,7 +45,7 @@ jobs:
run: yarn install --frozen-lockfile
- name: Run script
id: run-script
uses: actions/github-script@v7
uses: actions/github-script@v8
env:
USERNAME: ${{ inputs.username }}
AUTHOR_ASSOCIATION: ${{ inputs.author_association }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/manage-issue-header.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
app-id: ${{ secrets.LE_BOT_APP_ID }}
private-key: ${{ secrets.LE_BOT_PRIVATE_KEY }}
- name: Checkout .github repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: learningequality/.github
ref: main
Expand All @@ -37,7 +37,7 @@ jobs:
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run script
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
github-token: ${{ steps.generate-token.outputs.token }}
script: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-statistics.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
app-id: ${{ secrets.LE_BOT_APP_ID }}
private-key: ${{ secrets.LE_BOT_PRIVATE_KEY }}
- name: Checkout .github repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: learningequality/.github
ref: main
Expand All @@ -30,7 +30,7 @@ jobs:
run: npm install
- name: Generate PR statistics
id: stats
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
github-token: ${{ steps.generate-token.outputs.token }}
script: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pull-request-label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
app-id: ${{ secrets.LE_BOT_APP_ID }}
private-key: ${{ secrets.LE_BOT_PRIVATE_KEY }}
- name: Checkout .github repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: learningequality/.github
ref: main
Expand All @@ -44,7 +44,7 @@ jobs:
run: yarn install --frozen-lockfile
- name: Run script
id: script
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
github-token: ${{ steps.generate-token.outputs.token }}
script: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/review-requested.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
app-id: ${{ secrets.LE_BOT_APP_ID }}
private-key: ${{ secrets.LE_BOT_PRIVATE_KEY }}
- name: Checkout .github repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: learningequality/.github
ref: main
Expand All @@ -44,7 +44,7 @@ jobs:
run: yarn install --frozen-lockfile
- name: Run script
id: script
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
github-token: ${{ steps.generate-token.outputs.token }}
script: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unassign-inactive-issues.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
app-id: ${{ secrets.LE_BOT_APP_ID }}
private-key: ${{ secrets.LE_BOT_PRIVATE_KEY }}
- name: Checkout .github repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: learningequality/.github
ref: main
Expand All @@ -44,7 +44,7 @@ jobs:
run: npm install
- name: Run unassign script
id: unassign
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
github-token: ${{ steps.generate-token.outputs.token }}
script: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update-pr-spreadsheet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
app-id: ${{ secrets.LE_BOT_APP_ID }}
private-key: ${{ secrets.LE_BOT_PRIVATE_KEY }}
- name: Checkout .github repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: learningequality/.github
ref: main
Expand All @@ -49,7 +49,7 @@ jobs:
run: yarn install --frozen-lockfile
- name: Run script
id: script
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
github-token: ${{ steps.generate-token.outputs.token }}
script: |
Expand Down