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
12 changes: 6 additions & 6 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand All @@ -27,7 +27,7 @@ jobs:
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT

- name: Cache Composer dependencies
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
Expand Down Expand Up @@ -58,10 +58,10 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v5
with:
node-version: '20'
cache: 'npm'
Expand All @@ -78,10 +78,10 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v5
with:
node-version: '20'
cache: 'npm'
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/pr-enforce.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Set initial status
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
await github.rest.repos.createCommitStatus({
Expand All @@ -30,7 +30,7 @@ jobs:
});

- name: Wait for validation checks to complete
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
const requiredChecks = ['Check Version Bump', 'Check CHANGELOG Entry', 'Validate Training Schedules'];
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:

- name: Check validation results
id: check-results
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
// Get all check runs for this commit
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:

- name: Update status (success)
if: steps.check-results.outputs.all_passed == 'true'
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
await github.rest.repos.createCommitStatus({
Expand All @@ -156,7 +156,7 @@ jobs:

- name: Update status (failure)
if: steps.check-results.outputs.all_passed != 'true'
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
const failedChecks = '${{ steps.check-results.outputs.failed_checks }}';
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/pr-validation.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 PR branch
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ github.event.pull_request.head.sha }}

- name: Checkout base branch
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ github.event.pull_request.base.ref }}
path: base
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
if: needs.validate-version.outputs.result == 'success'
steps:
- name: Checkout PR branch
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ github.event.pull_request.head.sha }}

Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
if: github.event.action != 'edited'
steps:
- name: Checkout PR branch
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
Expand Down Expand Up @@ -167,7 +167,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout PR branch
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ github.event.pull_request.head.sha }}

Expand Down Expand Up @@ -203,7 +203,7 @@ jobs:
if: always() && github.event.action != 'edited'
steps:
- name: Update PR description
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
// Get current PR body
Expand Down Expand Up @@ -260,7 +260,7 @@ jobs:
if: always() && github.event.action != 'edited'
steps:
- name: Create summary comment
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
const versionResult = '${{ needs.validate-version.outputs.result }}';
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-conventional-commits.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0 # Fetch all history for commit validation

Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [14.6.9] - 2026-06-08

### Changed

- Bump GitHub Actions off the deprecated Node 20 runtime: `actions/cache`
v4→v5, `actions/checkout` v4→v5, `actions/github-script` v7→v8,
`actions/setup-node` v4→v5. GitHub forces JavaScript actions onto Node 24
starting 2026-06-16.

## [14.6.8] - 2026-04-29

### Added
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Body Refactoring - Personal Training Tracker with Dynamic Scheduling",
"type": "project",
"license": "GPL-2.0-or-later",
"version": "14.6.8",
"version": "14.6.9",
"authors": [
{
"name": "Christoph Daum",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bodyrefactoring",
"version": "14.6.8",
"version": "14.6.9",
"private": true,
"description": "Body Refactoring - Personal Training Tracker with Dynamic Scheduling",
"scripts": {
Expand Down