Skip to content

Commit b3e21ee

Browse files
author
Sebastian Bürgin-Fix
authored
Unpushed commits (local main ahead of origin/main) (#209)
* Fixed #197 * Resolved #189, updated Docs and Tests for Enums * Removed phpunit cache * Resolved #188 * wip * Minor code improvements * Improved TransferDocument Request * Security updates * Optimized Repository Skeleton * chore: sync Laravel Pint workflow from template * chore: sync CONTRIBUTING.md from template * chore: sync security policy from template * chore: sync PHPStan workflow from template * chore: sync Laravel Pint workflow from template * chore: sync Dependabot config and workflows from template * chore: sync Laravel Pint workflow from template * chore: sync PHPStan workflow from template * chore: sync release workflow from template * chore: sync CONTRIBUTING.md from template * chore: sync security policy from template
1 parent 0f121fa commit b3e21ee

6 files changed

Lines changed: 30 additions & 67 deletions

File tree

.github/workflows/dependency-review.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: 'Checkout Repository'
18-
uses: actions/checkout@v6
18+
uses: actions/checkout@v6.0.2
1919
- name: 'Dependency Review'
20-
uses: actions/dependency-review-action@v4
20+
uses: actions/dependency-review-action@v4.9.0

.github/workflows/fix-php-code-style-issues.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ jobs:
1717
uses: aglipanci/laravel-pint-action@2.6
1818

1919
- name: Commit changes
20-
uses: stefanzweifel/git-auto-commit-action@v6.0.1
20+
uses: stefanzweifel/git-auto-commit-action@v7.1.0
2121
with:
2222
commit_message: Fix styling

.github/workflows/phpstan.yml

Lines changed: 24 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,42 @@
11
name: PHPStan
22

3-
on: [push]
3+
on:
4+
push:
5+
paths:
6+
- '**/*.php'
7+
- 'phpstan.neon.dist'
8+
- 'phpstan-baseline.neon'
9+
- 'composer.json'
10+
- 'composer.lock'
11+
pull_request:
12+
paths:
13+
- '**/*.php'
14+
- 'phpstan.neon.dist'
15+
- 'phpstan-baseline.neon'
16+
- 'composer.json'
17+
- 'composer.lock'
18+
workflow_dispatch:
19+
20+
concurrency:
21+
group: ${{ github.workflow }}-${{ github.ref }}
22+
cancel-in-progress: true
423

524
jobs:
625
phpstan:
726
name: phpstan
827
runs-on: ubuntu-latest
28+
timeout-minutes: 5
929
steps:
10-
- uses: actions/checkout@v5
30+
- uses: actions/checkout@v6.0.2
1131

1232
- name: Setup PHP
13-
uses: shivammathur/setup-php@v2
33+
uses: shivammathur/setup-php@2.37.0
1434
with:
1535
php-version: '8.4'
1636
coverage: none
1737

1838
- name: Install composer dependencies
19-
uses: ramsey/composer-install@v3
39+
uses: ramsey/composer-install@4.0.0
2040

2141
- name: Run PHPStan
2242
run: ./vendor/bin/phpstan --error-format=github

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,13 @@ jobs:
1010
release:
1111
name: Release
1212
runs-on: ubuntu-latest
13+
timeout-minutes: 10
1314
steps:
14-
- uses: actions/checkout@v5
15+
- uses: actions/checkout@v6.0.2
1516
with:
1617
fetch-depth: '0'
1718
- name: Bump version and push tag
18-
uses: anothrNick/github-tag-action@master
19+
uses: anothrNick/github-tag-action@1.75.0
1920
env:
2021
GITHUB_TOKEN: ${{ secrets.MY_GITHUB_TOKEN }}
2122
WITH_V: true

CONTRIBUTING.md

Lines changed: 0 additions & 55 deletions
This file was deleted.

SECURITY.md

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)