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
2 changes: 1 addition & 1 deletion .github/workflows/add-article.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Parse issue and create article content file
id: parse
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/add-event.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Parse issue and create event content file
id: parse
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/add-user-group.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Parse issue and create user group content file
id: parse
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ jobs:
&& sudo dpkg -i ${{ runner.temp }}/hugo.deb

- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
submodules: recursive
fetch-depth: 0

- name: Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v7
with:
node-version: '18'
node-version: '24'

- name: Install Node dependencies
run: |
Expand Down
23 changes: 13 additions & 10 deletions .github/workflows/community-stats.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,29 +7,32 @@ on:

permissions:
contents: write
pull-requests: write

jobs:
update-community:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v7
with:
node-version: '18'
node-version: '24'

- name: Install dependencies
run: npm install node-fetch

- name: Fetch Discourse activity
run: node .github/scripts/fetch-discourse-activity.js

- name: Commit updates
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git add data/community_stats.json
git diff --staged --quiet || git commit -m "Update community stats"
git push
- name: Create pull request for updated community stats
uses: peter-evans/create-pull-request@v8.1.1
with:
add-paths: data/community_stats.json
branch: automation/update-community-stats
Comment on lines +30 to +34
commit-message: Update community stats
title: Update community stats
body: Automated update from the PowerShell.org community forum.
delete-branch: true
6 changes: 3 additions & 3 deletions .github/workflows/meetup-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v7
with:
node-version: '20'
node-version: '24'

- name: Sync upcoming Meetup events
run: node .github/scripts/sync-meetup-events.mjs
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/podcast-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v7
with:
node-version: '18'
node-version: '24'

- name: Install dependencies
run: npm install node-fetch
Expand Down