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/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
timeout-minutes: 30
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Set up JDK 17
uses: actions/setup-java@v6
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
timeout-minutes: 15
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Initialize CodeQL
uses: github/codeql-action/init@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dependency-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: OWASP Dependency Check
uses: dependency-check/Dependency-Check_Action@main
Expand All @@ -38,7 +38,7 @@ jobs:

- name: Upload report
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: dependency-check-report
path: ${{ github.workspace }}/reports/
6 changes: 3 additions & 3 deletions .github/workflows/deploy-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID || '2861af483292ee5ae3c882f83b782c91' }}
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Setup Node.js 22
uses: actions/setup-node@v4
uses: actions/setup-node@v7
with:
node-version: 22
cache: npm
Expand All @@ -38,7 +38,7 @@ jobs:

- name: Deploy to Cloudflare Pages
if: env.CLOUDFLARE_API_TOKEN != ''
uses: cloudflare/wrangler-action@v3
uses: cloudflare/wrangler-action@v4
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID || '2861af483292ee5ae3c882f83b782c91' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Setup JDK 17
uses: actions/setup-java@v6
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
timeout-minutes: 20
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Set up JDK 17
uses: actions/setup-java@v6
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:

- name: Upload Debug APK
if: success()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: debug-apk
path: app/build/outputs/apk/debug/*.apk
Expand All @@ -67,7 +67,7 @@ jobs:
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Set up JDK 17
uses: actions/setup-java@v6
Expand All @@ -87,7 +87,7 @@ jobs:

- name: Upload Lint Report
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: lint-report
path: app/build/reports/lint-results-debug.html
Expand All @@ -100,7 +100,7 @@ jobs:
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Set up JDK 17
uses: actions/setup-java@v6
Expand All @@ -120,7 +120,7 @@ jobs:

- name: Upload Test Report
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: test-report
path: app/build/reports/tests/testDebugUnitTest/
Expand All @@ -133,10 +133,10 @@ jobs:
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Setup Node.js 22
uses: actions/setup-node@v4
uses: actions/setup-node@v7
with:
node-version: 22
cache: npm
Expand All @@ -157,7 +157,7 @@ jobs:
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Verify Fastlane & F-Droid Metadata
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-welcome.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
if: github.actor != 'dependabot[bot]' && github.actor != 'github-actions[bot]'
steps:
- name: Post PR Welcome Message
uses: actions/github-script@v7
uses: actions/github-script@v9
with:
script: |
const author = context.payload.pull_request.user.login;
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
packages: write
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Setup JDK 17
uses: actions/setup-java@v6
Expand Down