Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update all non-major dependencies #428

Merged
merged 1 commit into from
Aug 10, 2024
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
8 changes: 4 additions & 4 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
with:
persist-credentials: false
- name: Setup PHP
uses: shivammathur/setup-php@2.30.0
uses: shivammathur/setup-php@2.31.1
with:
php-version: 8.1
extensions: mbstring, dom, intl, iconv
Expand All @@ -21,12 +21,12 @@ jobs:
- name: Generate documentation
run: bin/daux generate --value html.plausible_domain=daux.io
- name: Deploy same repository 🚀
uses: JamesIves/github-pages-deploy-action@v4.5.0
uses: JamesIves/github-pages-deploy-action@v4.6.3
with:
folder: "static"
branch: gh-pages
- name: Deploy daux.io 🚀
uses: JamesIves/github-pages-deploy-action@v4.5.0
uses: JamesIves/github-pages-deploy-action@v4.6.3
with:
folder: "static"
token: ${{ secrets.GH_TOKEN_DAUX }}
Expand All @@ -40,7 +40,7 @@ jobs:
with:
persist-credentials: false
- name: Setup PHP
uses: shivammathur/setup-php@2.30.0
uses: shivammathur/setup-php@2.31.1
with:
php-version: 8.1
extensions: mbstring, dom, intl
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@2.30.0
uses: shivammathur/setup-php@2.31.1
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring, dom, intl, iconv
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
- uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@2.30.0
uses: shivammathur/setup-php@2.31.1
with:
php-version: '8.1'
extensions: mbstring, dom, intl, iconv
Expand All @@ -72,7 +72,7 @@ jobs:
run: bin/daux generate --format=html-file --destination=static-single

- name: Setup Node.js
uses: actions/setup-node@v4.0.2
uses: actions/setup-node@v4.0.3
with:
node-version: '20.x'
cache: 'yarn'
Expand All @@ -96,7 +96,7 @@ jobs:
fetch-depth: 0

- name: Setup PHP
uses: shivammathur/setup-php@2.30.0
uses: shivammathur/setup-php@2.31.1
with:
php-version: 8.1
extensions: mbstring, dom, intl, iconv
Expand All @@ -119,7 +119,7 @@ jobs:
run: echo "project_version=$(git tag -l --sort=-creatordate --format='%(refname:short)' | head -n1)" >> $GITHUB_OUTPUT

- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@v2.1
uses: SonarSource/sonarcloud-github-action@v2.3
with:
args: >
-Dsonar.projectVersion=`${{ steps.project_version.outputs.project_version }}`
Expand Down
893 changes: 0 additions & 893 deletions .yarn/releases/yarn-4.1.0.cjs

This file was deleted.

925 changes: 925 additions & 0 deletions .yarn/releases/yarn-4.4.0.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ plugins:
- path: .yarn/plugins/@yarnpkg/plugin-outdated.cjs
spec: "https://github.com/mskelton/yarn-plugin-outdated/raw/v3.2.4/bundles/@yarnpkg/plugin-outdated.js"

yarnPath: .yarn/releases/yarn-4.1.0.cjs
yarnPath: .yarn/releases/yarn-4.4.0.cjs
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM composer:2.7.1 AS composer
FROM composer:2.7.7 AS composer

FROM php:8.3.3
FROM php:8.3.10

RUN apt-get update \
&& apt-get install -y --no-install-recommends libicu-dev git unzip \
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
"version": "0.3.0",
"private": true,
"devDependencies": {
"@biomejs/biome": "1.5.3",
"@swc/core": "1.4.2",
"@swissquote/crafty": "1.25.0",
"@swissquote/crafty-preset-postcss": "1.25.0",
"@swissquote/crafty-runner-gulp": "1.25.0",
"@biomejs/biome": "1.8.3",
"@swc/core": "1.7.10",
"@swissquote/crafty": "1.26.0",
"@swissquote/crafty-preset-postcss": "1.26.0",
"@swissquote/crafty-runner-gulp": "1.26.0",
"flexsearch": "^0.7.0",
"katex": "^0.16.4",
"mermaid": "^10.0.0",
Expand All @@ -27,5 +27,5 @@
"lint:js": "yarn lint:js:format && yarn lint:js:check",
"lint:css": "crafty cssLint --fix --preset recommended themes/daux_singlepage/scss/*.scss themes/daux/scss/*.scss"
},
"packageManager": "yarn@4.1.0"
"packageManager": "yarn@4.4.0"
}
Loading