From aac6089cae6c9ad8f16e8b2c603a1791f777b40b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Aug 2025 10:02:56 +0000 Subject: [PATCH 1/2] build(deps): bump actions/checkout from 4 to 5 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build-and-deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-deploy.yml b/.github/workflows/build-and-deploy.yml index 19cfb0f..1d41dd7 100644 --- a/.github/workflows/build-and-deploy.yml +++ b/.github/workflows/build-and-deploy.yml @@ -6,7 +6,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/cache@v4 name: Cache Stack with: @@ -48,7 +48,7 @@ jobs: if: github.event_name == 'push' && github.ref == 'refs/heads/master' runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Download build uses: actions/download-artifact@v4 with: From 2732b7b48272b8c8d9c59a94eeedf1321f6826fd Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 12 Aug 2025 10:03:03 +0000 Subject: [PATCH 2/2] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- .github/dependabot.yml | 8 ++++---- index.md | 12 ++++++------ posts/haskell/intro-to-haskell.md | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 6867e71..dea7fea 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,7 +5,7 @@ version: 2 updates: - - package-ecosystem: "github-actions" - directory: "/" - schedule: - interval: "weekly" + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" diff --git a/index.md b/index.md index 8b685eb..75c52d5 100644 --- a/index.md +++ b/index.md @@ -35,12 +35,12 @@ what functional programming languages have to offer over imperative languages. This blog is hosted on [GitHub Pages](https://pages.github.com/) and built with these software: -- [Hakyll](https://jaspervdj.be/hakyll), a static site generator written in - Haskell which allows for great flexibility in the building of pages -- [KaTeX](https://katex.org), a renderer for - [LaTeX](https://www.latex-project.org/) math equations -- [Utterances](https://utteranc.es/), a lightweight comments widget built on - GitHub issues +- [Hakyll](https://jaspervdj.be/hakyll), a static site generator written in + Haskell which allows for great flexibility in the building of pages +- [KaTeX](https://katex.org), a renderer for + [LaTeX](https://www.latex-project.org/) math equations +- [Utterances](https://utteranc.es/), a lightweight comments widget built on + GitHub issues The design of this blog was inspired by [Mike Bostock](https://bost.ocks.org/mike)'s website. diff --git a/posts/haskell/intro-to-haskell.md b/posts/haskell/intro-to-haskell.md index f74aabf..a38fe9d 100644 --- a/posts/haskell/intro-to-haskell.md +++ b/posts/haskell/intro-to-haskell.md @@ -504,7 +504,7 @@ mathematically-inclined. You can take a look at the following readings: -- [Why Functional Programming matters](http://www.cs.kent.ac.uk/people/staff/dat/miranda/whyfp90.pdf) +- [Why Functional Programming matters](http://www.cs.kent.ac.uk/people/staff/dat/miranda/whyfp90.pdf) You may also wish to follow [Chris Allen's guide](https://github.com/bitemyapp/learnhaskell) to learn more