Skip to content
Open
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/ghost.yml
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ jobs:
gh release upload "$TAG" "$DEST" --clobber

- name: Upload workflow artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
if: always()
with:
name: ghost-android-aarch64
Expand Down Expand Up @@ -652,7 +652,7 @@ jobs:

# ── Upload xcarchive as workflow artifact too ──
- name: Upload workflow artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
if: always()
with:
name: ghost-ios-aarch64-xcarchive
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
labeler:
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v5
- uses: actions/labeler@v6
with:
configuration-path: .github/labeler.yml
sync-labels: true
2 changes: 1 addition & 1 deletion .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
- uses: actions/stale@v10
with:
days-before-issue-stale: 60
days-before-issue-close: 7
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/website-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,12 @@ jobs:
changed: ${{ steps.commit.outputs.changed }}
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
token: ${{ secrets.GITHUB_TOKEN }}

- name: Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: 22

Expand Down Expand Up @@ -87,12 +87,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout (latest, including sync commit)
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: main

- name: Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: 22

Expand All @@ -105,7 +105,7 @@ jobs:
run: npm run build

- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v3
uses: actions/upload-pages-artifact@v4
with:
path: website/dist

Expand Down
Loading