From f4f627ad3c5aea3a052567697c466843c0a411aa Mon Sep 17 00:00:00 2001 From: Takym <15681312+Takym@users.noreply.github.com> Date: Sun, 26 Nov 2023 19:08:30 +0900 Subject: [PATCH 01/40] =?UTF-8?q?Dependabot=20=E3=81=AE=E3=83=97=E3=83=AB?= =?UTF-8?q?=E3=83=AA=E3=82=AF=E3=82=A8=E3=82=B9=E3=83=88=E3=82=92=E8=87=AA?= =?UTF-8?q?=E5=8B=95=E3=83=9E=E3=83=BC=E3=82=B8=E3=81=99=E3=82=8B=E4=BB=95?= =?UTF-8?q?=E7=B5=84=E3=81=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/dependabot.yml | 8 ++++++-- .github/workflows/MergeDependabotPR.yml | 18 ++++++++++++++++++ .gitignore | 2 ++ Gemfile | 1 + 4 files changed, 27 insertions(+), 2 deletions(-) create mode 100644 .github/workflows/MergeDependabotPR.yml create mode 100644 .gitignore create mode 100644 Gemfile diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 57a0f49..0439920 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,6 +1,10 @@ version: 2 updates: - - package-ecosystem: "gitsubmodule" + - package-ecosystem: gitsubmodule directory: "/" schedule: - interval: "monthly" + interval: daily + - package-ecosystem: github-actions + directory: "/.github/workflows/" + schedule: + interval: daily diff --git a/.github/workflows/MergeDependabotPR.yml b/.github/workflows/MergeDependabotPR.yml new file mode 100644 index 0000000..ec331cc --- /dev/null +++ b/.github/workflows/MergeDependabotPR.yml @@ -0,0 +1,18 @@ + +name: "Merge Dependabot PR" + +on: + pull_request: + types: [ opened ] + branches: [ master ] + +jobs: + merge: + if: github.event.pull_request.user.login == 'dependabot[bot]' + runs-on: ubuntu-latest + steps: + - uses: KeisukeYamashita/auto-pull-request-merge@v1 + with: + pullRequestNumber: ${{ github.event.pull_request.number }} + token: ${{ secrets.GITHUB_TOKEN }} + labels: "dependencies" diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d944721 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +_site/ +Gemfile.lock diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..b1abdf6 --- /dev/null +++ b/Gemfile @@ -0,0 +1 @@ +gem "github-pages", group: :jekyll_plugins From 4a46ccce3aa9dd0d7ba28b9444ffe124bf5c947b Mon Sep 17 00:00:00 2001 From: Takym <15681312+Takym@users.noreply.github.com> Date: Sun, 26 Nov 2023 19:12:57 +0900 Subject: [PATCH 02/40] Update "Merge Dependabot PR" --- .github/workflows/MergeDependabotPR.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/MergeDependabotPR.yml b/.github/workflows/MergeDependabotPR.yml index ec331cc..7ae4cc1 100644 --- a/.github/workflows/MergeDependabotPR.yml +++ b/.github/workflows/MergeDependabotPR.yml @@ -3,7 +3,7 @@ name: "Merge Dependabot PR" on: pull_request: - types: [ opened ] + types: [ opened, reopened ] branches: [ master ] jobs: From 4414766ffad58c5af6c176f86a643d851a8d1dff Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 26 Nov 2023 10:13:55 +0000 Subject: [PATCH 03/40] Bump wiki from `2c39a0b` to `4a65ba2` Bumps [wiki](https://github.com/osdev-jp/osdev-jp.github.io.wiki) from `2c39a0b` to `4a65ba2`. - [Commits](https://github.com/osdev-jp/osdev-jp.github.io.wiki/compare/2c39a0b2ddf7e9855c9fcd447974c25ee0fe85a7...4a65ba21d9a836e5eeb2ae8a3cf1b18c77017c95) --- updated-dependencies: - dependency-name: wiki dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- wiki | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiki b/wiki index 2c39a0b..4a65ba2 160000 --- a/wiki +++ b/wiki @@ -1 +1 @@ -Subproject commit 2c39a0b2ddf7e9855c9fcd447974c25ee0fe85a7 +Subproject commit 4a65ba21d9a836e5eeb2ae8a3cf1b18c77017c95 From 6916e2d0785fd0ef5c47c1a44d9b8566f46c90f5 Mon Sep 17 00:00:00 2001 From: Takym <15681312+Takym@users.noreply.github.com> Date: Sun, 26 Nov 2023 19:16:20 +0900 Subject: [PATCH 04/40] Update "Merge Dependabot PR" --- .github/workflows/MergeDependabotPR.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/MergeDependabotPR.yml b/.github/workflows/MergeDependabotPR.yml index 7ae4cc1..736cfac 100644 --- a/.github/workflows/MergeDependabotPR.yml +++ b/.github/workflows/MergeDependabotPR.yml @@ -9,6 +9,7 @@ on: jobs: merge: if: github.event.pull_request.user.login == 'dependabot[bot]' + permissions: write-all runs-on: ubuntu-latest steps: - uses: KeisukeYamashita/auto-pull-request-merge@v1 From 8b62c0b96efc95971ca6c14a940a5652f13b2995 Mon Sep 17 00:00:00 2001 From: Takym <15681312+Takym@users.noreply.github.com> Date: Sun, 26 Nov 2023 19:21:53 +0900 Subject: [PATCH 05/40] =?UTF-8?q?Jekyll=20=E3=83=93=E3=83=AB=E3=83=89?= =?UTF-8?q?=E7=94=A8=E3=81=AE=E3=82=B3=E3=83=9E=E3=83=B3=E3=83=89=E3=82=92?= =?UTF-8?q?=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.cmd | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 build.cmd diff --git a/build.cmd b/build.cmd new file mode 100644 index 0000000..d5e7780 --- /dev/null +++ b/build.cmd @@ -0,0 +1,2 @@ +@echo off +wsl bundle exec jekyll b From e916320360859766464dd3ee6a48de2fbf93ba61 Mon Sep 17 00:00:00 2001 From: Takym <15681312+Takym@users.noreply.github.com> Date: Sun, 26 Nov 2023 19:42:20 +0900 Subject: [PATCH 06/40] =?UTF-8?q?"Merge=20Dependabot=20PR"=20=E3=81=AE?= =?UTF-8?q?=E6=A8=A9=E9=99=90=E3=82=92=E5=88=B6=E9=99=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/MergeDependabotPR.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/MergeDependabotPR.yml b/.github/workflows/MergeDependabotPR.yml index 736cfac..11f83d9 100644 --- a/.github/workflows/MergeDependabotPR.yml +++ b/.github/workflows/MergeDependabotPR.yml @@ -9,7 +9,8 @@ on: jobs: merge: if: github.event.pull_request.user.login == 'dependabot[bot]' - permissions: write-all + permissions: + contents: write runs-on: ubuntu-latest steps: - uses: KeisukeYamashita/auto-pull-request-merge@v1 From d89bfa7b152b47ce10e7c07490f4c966e4b87db5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 26 Nov 2023 10:51:12 +0000 Subject: [PATCH 07/40] Bump wiki from `4a65ba2` to `2b714d4` Bumps [wiki](https://github.com/osdev-jp/osdev-jp.github.io.wiki) from `4a65ba2` to `2b714d4`. - [Commits](https://github.com/osdev-jp/osdev-jp.github.io.wiki/compare/4a65ba21d9a836e5eeb2ae8a3cf1b18c77017c95...2b714d453c262445256b0137e199390beb4a00cd) --- updated-dependencies: - dependency-name: wiki dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- wiki | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiki b/wiki index 4a65ba2..2b714d4 160000 --- a/wiki +++ b/wiki @@ -1 +1 @@ -Subproject commit 4a65ba21d9a836e5eeb2ae8a3cf1b18c77017c95 +Subproject commit 2b714d453c262445256b0137e199390beb4a00cd From 93a2d7ac7dd24edf54929bd19effd4ab0deb87e0 Mon Sep 17 00:00:00 2001 From: Takym <15681312+Takym@users.noreply.github.com> Date: Sun, 26 Nov 2023 19:54:09 +0900 Subject: [PATCH 08/40] =?UTF-8?q?"Merge=20Dependabot=20PR"=20=E3=81=AE?= =?UTF-8?q?=E3=83=9E=E3=83=BC=E3=82=B8=E5=AF=BE=E8=B1=A1=E3=81=AEPR?= =?UTF-8?q?=E3=82=92=E3=82=B5=E3=83=96=E3=83=A2=E3=82=B8=E3=83=A5=E3=83=BC?= =?UTF-8?q?=E3=83=AB=E3=81=AB=E9=99=90=E5=AE=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/MergeDependabotPR.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/MergeDependabotPR.yml b/.github/workflows/MergeDependabotPR.yml index 11f83d9..6c33a14 100644 --- a/.github/workflows/MergeDependabotPR.yml +++ b/.github/workflows/MergeDependabotPR.yml @@ -17,4 +17,4 @@ jobs: with: pullRequestNumber: ${{ github.event.pull_request.number }} token: ${{ secrets.GITHUB_TOKEN }} - labels: "dependencies" + labels: "dependencies,submodules" From 321679291ead42ec23bc1f749a07f057583b7c9b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 26 Nov 2023 10:59:26 +0000 Subject: [PATCH 09/40] Bump wiki from `2b714d4` to `22450b3` Bumps [wiki](https://github.com/osdev-jp/osdev-jp.github.io.wiki) from `2b714d4` to `22450b3`. - [Commits](https://github.com/osdev-jp/osdev-jp.github.io.wiki/compare/2b714d453c262445256b0137e199390beb4a00cd...22450b3654ced00199ac5d1a834cfa12ca094e7b) --- updated-dependencies: - dependency-name: wiki dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- wiki | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiki b/wiki index 2b714d4..22450b3 160000 --- a/wiki +++ b/wiki @@ -1 +1 @@ -Subproject commit 2b714d453c262445256b0137e199390beb4a00cd +Subproject commit 22450b3654ced00199ac5d1a834cfa12ca094e7b From 8e4c09de491bb30c8223a753bbde0562111004d8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Nov 2023 11:21:02 +0000 Subject: [PATCH 10/40] Bump wiki from `22450b3` to `72b7e06` Bumps [wiki](https://github.com/osdev-jp/osdev-jp.github.io.wiki) from `22450b3` to `72b7e06`. - [Commits](https://github.com/osdev-jp/osdev-jp.github.io.wiki/compare/22450b3654ced00199ac5d1a834cfa12ca094e7b...72b7e06322123639c063e16b9b84cf5f0f5f0319) --- updated-dependencies: - dependency-name: wiki dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- wiki | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiki b/wiki index 22450b3..72b7e06 160000 --- a/wiki +++ b/wiki @@ -1 +1 @@ -Subproject commit 22450b3654ced00199ac5d1a834cfa12ca094e7b +Subproject commit 72b7e06322123639c063e16b9b84cf5f0f5f0319 From abde20257297eded6491c0f8b623804db914991e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Jan 2024 11:01:43 +0000 Subject: [PATCH 11/40] Bump wiki from `72b7e06` to `e5c54b1` Bumps [wiki](https://github.com/osdev-jp/osdev-jp.github.io.wiki) from `72b7e06` to `e5c54b1`. - [Commits](https://github.com/osdev-jp/osdev-jp.github.io.wiki/compare/72b7e06322123639c063e16b9b84cf5f0f5f0319...e5c54b1f5bef13f60b6fce5328bddd8967b37f7f) --- updated-dependencies: - dependency-name: wiki dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- wiki | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiki b/wiki index 72b7e06..e5c54b1 160000 --- a/wiki +++ b/wiki @@ -1 +1 @@ -Subproject commit 72b7e06322123639c063e16b9b84cf5f0f5f0319 +Subproject commit e5c54b1f5bef13f60b6fce5328bddd8967b37f7f From 9c88d95c7e7e44f7ea2b9da450038c5b1ec0c29b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Feb 2024 11:11:13 +0000 Subject: [PATCH 12/40] Bump wiki from `e5c54b1` to `9ded830` Bumps [wiki](https://github.com/osdev-jp/osdev-jp.github.io.wiki) from `e5c54b1` to `9ded830`. - [Commits](https://github.com/osdev-jp/osdev-jp.github.io.wiki/compare/e5c54b1f5bef13f60b6fce5328bddd8967b37f7f...9ded830e6897e621a2be18ace5e9c215215a447f) --- updated-dependencies: - dependency-name: wiki dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- wiki | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiki b/wiki index e5c54b1..9ded830 160000 --- a/wiki +++ b/wiki @@ -1 +1 @@ -Subproject commit e5c54b1f5bef13f60b6fce5328bddd8967b37f7f +Subproject commit 9ded830e6897e621a2be18ace5e9c215215a447f From 6ea3200d0fbff51f70ec964aaec8e43db288b062 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 2 Apr 2024 11:13:52 +0000 Subject: [PATCH 13/40] Bump wiki from `9ded830` to `8d972b5` Bumps [wiki](https://github.com/osdev-jp/osdev-jp.github.io.wiki) from `9ded830` to `8d972b5`. - [Commits](https://github.com/osdev-jp/osdev-jp.github.io.wiki/compare/9ded830e6897e621a2be18ace5e9c215215a447f...8d972b5e0c963eba8ab46774853c7cd7e83f7010) --- updated-dependencies: - dependency-name: wiki dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- wiki | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiki b/wiki index 9ded830..8d972b5 160000 --- a/wiki +++ b/wiki @@ -1 +1 @@ -Subproject commit 9ded830e6897e621a2be18ace5e9c215215a447f +Subproject commit 8d972b5e0c963eba8ab46774853c7cd7e83f7010 From 67f46230a76ffd7e1ff6a367a2735bc4c930bf73 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 28 May 2024 11:45:28 +0000 Subject: [PATCH 14/40] Bump wiki from `8d972b5` to `bbee3e2` Bumps [wiki](https://github.com/osdev-jp/osdev-jp.github.io.wiki) from `8d972b5` to `bbee3e2`. - [Commits](https://github.com/osdev-jp/osdev-jp.github.io.wiki/compare/8d972b5e0c963eba8ab46774853c7cd7e83f7010...bbee3e2cfb566454a7f4c9690747be78ae1927d6) --- updated-dependencies: - dependency-name: wiki dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- wiki | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiki b/wiki index 8d972b5..bbee3e2 160000 --- a/wiki +++ b/wiki @@ -1 +1 @@ -Subproject commit 8d972b5e0c963eba8ab46774853c7cd7e83f7010 +Subproject commit bbee3e2cfb566454a7f4c9690747be78ae1927d6 From 061dd963e5fdb24a73cc564a4adc0b31e2261ed2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 14 Jun 2024 11:56:52 +0000 Subject: [PATCH 15/40] Bump wiki from `bbee3e2` to `727134c` Bumps [wiki](https://github.com/osdev-jp/osdev-jp.github.io.wiki) from `bbee3e2` to `727134c`. - [Commits](https://github.com/osdev-jp/osdev-jp.github.io.wiki/compare/bbee3e2cfb566454a7f4c9690747be78ae1927d6...727134ce26ff1cfa791d77ef1067de3df23d10a6) --- updated-dependencies: - dependency-name: wiki dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- wiki | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiki b/wiki index bbee3e2..727134c 160000 --- a/wiki +++ b/wiki @@ -1 +1 @@ -Subproject commit bbee3e2cfb566454a7f4c9690747be78ae1927d6 +Subproject commit 727134ce26ff1cfa791d77ef1067de3df23d10a6 From a81a5edf2d739d59ae0418dafcb2b9d43f521ca2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jul 2024 11:56:10 +0000 Subject: [PATCH 16/40] Bump wiki from `727134c` to `2b13bf1` Bumps [wiki](https://github.com/osdev-jp/osdev-jp.github.io.wiki) from `727134c` to `2b13bf1`. - [Commits](https://github.com/osdev-jp/osdev-jp.github.io.wiki/compare/727134ce26ff1cfa791d77ef1067de3df23d10a6...2b13bf1516185889d29fbb1243d0200fe0a49633) --- updated-dependencies: - dependency-name: wiki dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- wiki | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiki b/wiki index 727134c..2b13bf1 160000 --- a/wiki +++ b/wiki @@ -1 +1 @@ -Subproject commit 727134ce26ff1cfa791d77ef1067de3df23d10a6 +Subproject commit 2b13bf1516185889d29fbb1243d0200fe0a49633 From 2aa31d7ea6f914c91b319c26bb5ae70db88eabda Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Aug 2024 11:15:38 +0000 Subject: [PATCH 17/40] Bump wiki from `2b13bf1` to `253fb53` Bumps [wiki](https://github.com/osdev-jp/osdev-jp.github.io.wiki) from `2b13bf1` to `253fb53`. - [Commits](https://github.com/osdev-jp/osdev-jp.github.io.wiki/compare/2b13bf1516185889d29fbb1243d0200fe0a49633...253fb53810e0581097484e0a2dfa6372f48d777c) --- updated-dependencies: - dependency-name: wiki dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- wiki | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiki b/wiki index 2b13bf1..253fb53 160000 --- a/wiki +++ b/wiki @@ -1 +1 @@ -Subproject commit 2b13bf1516185889d29fbb1243d0200fe0a49633 +Subproject commit 253fb53810e0581097484e0a2dfa6372f48d777c From d64f4d429b46c8f81693dce1ee68180e6f0edfd0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Sep 2024 11:14:06 +0000 Subject: [PATCH 18/40] Bump wiki from `253fb53` to `0c8f50c` Bumps [wiki](https://github.com/osdev-jp/osdev-jp.github.io.wiki) from `253fb53` to `0c8f50c`. - [Commits](https://github.com/osdev-jp/osdev-jp.github.io.wiki/compare/253fb53810e0581097484e0a2dfa6372f48d777c...0c8f50ce979d396fe2ff17702464b2f05f316043) --- updated-dependencies: - dependency-name: wiki dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- wiki | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiki b/wiki index 253fb53..0c8f50c 160000 --- a/wiki +++ b/wiki @@ -1 +1 @@ -Subproject commit 253fb53810e0581097484e0a2dfa6372f48d777c +Subproject commit 0c8f50ce979d396fe2ff17702464b2f05f316043 From 72e0f62da0d9b58d81e835578ed2f91fa4728b40 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Sep 2024 11:58:49 +0000 Subject: [PATCH 19/40] Bump wiki from `0c8f50c` to `c6378aa` Bumps [wiki](https://github.com/osdev-jp/osdev-jp.github.io.wiki) from `0c8f50c` to `c6378aa`. - [Commits](https://github.com/osdev-jp/osdev-jp.github.io.wiki/compare/0c8f50ce979d396fe2ff17702464b2f05f316043...c6378aab962da125f912d366dff118362cb2e3e4) --- updated-dependencies: - dependency-name: wiki dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- wiki | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiki b/wiki index 0c8f50c..c6378aa 160000 --- a/wiki +++ b/wiki @@ -1 +1 @@ -Subproject commit 0c8f50ce979d396fe2ff17702464b2f05f316043 +Subproject commit c6378aab962da125f912d366dff118362cb2e3e4 From 5573b57ebfe488dc9150747d187ad29e214365ff Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 29 Sep 2024 15:36:41 +0000 Subject: [PATCH 20/40] Bump wiki from `c6378aa` to `66fa44f` Bumps [wiki](https://github.com/osdev-jp/osdev-jp.github.io.wiki) from `c6378aa` to `66fa44f`. - [Commits](https://github.com/osdev-jp/osdev-jp.github.io.wiki/compare/c6378aab962da125f912d366dff118362cb2e3e4...66fa44f910af248084cd0853808409fbbec2d969) --- updated-dependencies: - dependency-name: wiki dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- wiki | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiki b/wiki index c6378aa..66fa44f 160000 --- a/wiki +++ b/wiki @@ -1 +1 @@ -Subproject commit c6378aab962da125f912d366dff118362cb2e3e4 +Subproject commit 66fa44f910af248084cd0853808409fbbec2d969 From 86a4939450831b1517f1ee2b10ef472670d199f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Takym=20=28=E3=81=9F=E3=81=8B=E3=82=84=E3=81=BE=29?= <15681312+Takym@users.noreply.github.com> Date: Sun, 6 Oct 2024 23:35:29 +0900 Subject: [PATCH 21/40] =?UTF-8?q?=E3=82=B5=E3=82=A4=E3=83=88=E3=83=9E?= =?UTF-8?q?=E3=83=83=E3=83=97=E8=87=AA=E5=8B=95=E7=94=9F=E6=88=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- _config.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/_config.yml b/_config.yml index 88f847f..8b96871 100644 --- a/_config.yml +++ b/_config.yml @@ -2,3 +2,5 @@ theme: jekyll-theme-minimal title: osdev.jp description: osdev-jpでは、OS開発に有用な情報を収集し公開しています logo: logo.png +plugins: + - jekyll-sitemap From 0eba28341866f74955dc17fdebc936867af11abd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Oct 2024 11:40:03 +0000 Subject: [PATCH 22/40] Bump wiki from `66fa44f` to `3ada44c` Bumps [wiki](https://github.com/osdev-jp/osdev-jp.github.io.wiki) from `66fa44f` to `3ada44c`. - [Commits](https://github.com/osdev-jp/osdev-jp.github.io.wiki/compare/66fa44f910af248084cd0853808409fbbec2d969...3ada44c25ccc7be7bf22172d28ca38a71846de15) --- updated-dependencies: - dependency-name: wiki dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- wiki | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiki b/wiki index 66fa44f..3ada44c 160000 --- a/wiki +++ b/wiki @@ -1 +1 @@ -Subproject commit 66fa44f910af248084cd0853808409fbbec2d969 +Subproject commit 3ada44c25ccc7be7bf22172d28ca38a71846de15 From daad4572638b9639820f36f8e67705d9dd680ad9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Dec 2024 11:20:04 +0000 Subject: [PATCH 23/40] Bump wiki from `3ada44c` to `b47c70b` Bumps [wiki](https://github.com/osdev-jp/osdev-jp.github.io.wiki) from `3ada44c` to `b47c70b`. - [Commits](https://github.com/osdev-jp/osdev-jp.github.io.wiki/compare/3ada44c25ccc7be7bf22172d28ca38a71846de15...b47c70bf3a7aad3d9c41b235cf183130b5ecb59f) --- updated-dependencies: - dependency-name: wiki dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- wiki | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiki b/wiki index 3ada44c..b47c70b 160000 --- a/wiki +++ b/wiki @@ -1 +1 @@ -Subproject commit 3ada44c25ccc7be7bf22172d28ca38a71846de15 +Subproject commit b47c70bf3a7aad3d9c41b235cf183130b5ecb59f From 01e9249a9a087cdc691c55ebe6006e44be92e6f7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Mar 2025 11:26:21 +0000 Subject: [PATCH 24/40] Bump wiki from `b47c70b` to `ae8cdc0` Bumps [wiki](https://github.com/osdev-jp/osdev-jp.github.io.wiki) from `b47c70b` to `ae8cdc0`. - [Commits](https://github.com/osdev-jp/osdev-jp.github.io.wiki/compare/b47c70bf3a7aad3d9c41b235cf183130b5ecb59f...ae8cdc0edfab6f14122d568493ed92eba7199d9f) --- updated-dependencies: - dependency-name: wiki dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- wiki | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiki b/wiki index b47c70b..ae8cdc0 160000 --- a/wiki +++ b/wiki @@ -1 +1 @@ -Subproject commit b47c70bf3a7aad3d9c41b235cf183130b5ecb59f +Subproject commit ae8cdc0edfab6f14122d568493ed92eba7199d9f From e4e2330dd1b410f2fd77b13c6652516779449b3b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 May 2025 12:06:24 +0000 Subject: [PATCH 25/40] Bump wiki from `ae8cdc0` to `ad622a1` Bumps [wiki](https://github.com/osdev-jp/osdev-jp.github.io.wiki) from `ae8cdc0` to `ad622a1`. - [Commits](https://github.com/osdev-jp/osdev-jp.github.io.wiki/compare/ae8cdc0edfab6f14122d568493ed92eba7199d9f...ad622a1b919f03b680f770547aebd39ffce188ff) --- updated-dependencies: - dependency-name: wiki dependency-version: ad622a1b919f03b680f770547aebd39ffce188ff dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- wiki | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiki b/wiki index ae8cdc0..ad622a1 160000 --- a/wiki +++ b/wiki @@ -1 +1 @@ -Subproject commit ae8cdc0edfab6f14122d568493ed92eba7199d9f +Subproject commit ad622a1b919f03b680f770547aebd39ffce188ff From 3a96846abafcdb623575d639e33e99f73a082b9e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Jun 2025 12:41:24 +0000 Subject: [PATCH 26/40] Bump wiki from `ad622a1` to `7058b48` Bumps [wiki](https://github.com/osdev-jp/osdev-jp.github.io.wiki) from `ad622a1` to `7058b48`. - [Commits](https://github.com/osdev-jp/osdev-jp.github.io.wiki/compare/ad622a1b919f03b680f770547aebd39ffce188ff...7058b489ed52ffe45a21e3daad249ff161a4bd5c) --- updated-dependencies: - dependency-name: wiki dependency-version: 7058b489ed52ffe45a21e3daad249ff161a4bd5c dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- wiki | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiki b/wiki index ad622a1..7058b48 160000 --- a/wiki +++ b/wiki @@ -1 +1 @@ -Subproject commit ad622a1b919f03b680f770547aebd39ffce188ff +Subproject commit 7058b489ed52ffe45a21e3daad249ff161a4bd5c From 0ee8cb538098bfdefef4d3ddf0646d71cce8905d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 14 Jul 2025 14:42:24 +0000 Subject: [PATCH 27/40] Bump wiki from `c6378aa` to `647ed4b` Bumps [wiki](https://github.com/osdev-jp/osdev-jp.github.io.wiki) from `c6378aa` to `647ed4b`. - [Commits](https://github.com/osdev-jp/osdev-jp.github.io.wiki/compare/c6378aab962da125f912d366dff118362cb2e3e4...647ed4be8c22aa5801ac16832e14bc8e94746c03) --- updated-dependencies: - dependency-name: wiki dependency-version: 647ed4be8c22aa5801ac16832e14bc8e94746c03 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- wiki | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiki b/wiki index c6378aa..647ed4b 160000 --- a/wiki +++ b/wiki @@ -1 +1 @@ -Subproject commit c6378aab962da125f912d366dff118362cb2e3e4 +Subproject commit 647ed4be8c22aa5801ac16832e14bc8e94746c03 From 923cb4169b3c4fdb48d9219b6e93b637e65c55d0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 15 Jul 2025 11:37:44 +0000 Subject: [PATCH 28/40] Bump wiki from `647ed4b` to `4e4130f` Bumps [wiki](https://github.com/osdev-jp/osdev-jp.github.io.wiki) from `647ed4b` to `4e4130f`. - [Commits](https://github.com/osdev-jp/osdev-jp.github.io.wiki/compare/647ed4be8c22aa5801ac16832e14bc8e94746c03...4e4130f30d81eee8d8bc0a11f7ea97e7926113ec) --- updated-dependencies: - dependency-name: wiki dependency-version: 4e4130f30d81eee8d8bc0a11f7ea97e7926113ec dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- wiki | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiki b/wiki index 647ed4b..4e4130f 160000 --- a/wiki +++ b/wiki @@ -1 +1 @@ -Subproject commit 647ed4be8c22aa5801ac16832e14bc8e94746c03 +Subproject commit 4e4130f30d81eee8d8bc0a11f7ea97e7926113ec From 7e5336a28cd5f9e49704a00b00f51e81292cc0b4 Mon Sep 17 00:00:00 2001 From: Takym <15681312+Takym@users.noreply.github.com> Date: Tue, 15 Jul 2025 21:20:55 +0900 Subject: [PATCH 29/40] =?UTF-8?q?Dependabot=20=E3=82=92=E4=BD=BF=E3=81=86?= =?UTF-8?q?=E6=96=B9=E5=BC=8F=E3=81=8B=E3=82=89=20GitHub=20Workflow=20?= =?UTF-8?q?=E3=82=92=E8=87=AA=E5=8B=95=E5=AE=9F=E8=A1=8C=E3=81=99=E3=82=8B?= =?UTF-8?q?=E6=96=B9=E5=BC=8F=E3=81=AB=E5=A4=89=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/MergeDependabotPR.yml | 20 ------------ .github/workflows/UpdateWikiSubmodule.yml | 39 +++++++++++++++++++++++ 2 files changed, 39 insertions(+), 20 deletions(-) delete mode 100644 .github/workflows/MergeDependabotPR.yml create mode 100644 .github/workflows/UpdateWikiSubmodule.yml diff --git a/.github/workflows/MergeDependabotPR.yml b/.github/workflows/MergeDependabotPR.yml deleted file mode 100644 index 6c33a14..0000000 --- a/.github/workflows/MergeDependabotPR.yml +++ /dev/null @@ -1,20 +0,0 @@ - -name: "Merge Dependabot PR" - -on: - pull_request: - types: [ opened, reopened ] - branches: [ master ] - -jobs: - merge: - if: github.event.pull_request.user.login == 'dependabot[bot]' - permissions: - contents: write - runs-on: ubuntu-latest - steps: - - uses: KeisukeYamashita/auto-pull-request-merge@v1 - with: - pullRequestNumber: ${{ github.event.pull_request.number }} - token: ${{ secrets.GITHUB_TOKEN }} - labels: "dependencies,submodules" diff --git a/.github/workflows/UpdateWikiSubmodule.yml b/.github/workflows/UpdateWikiSubmodule.yml new file mode 100644 index 0000000..5b434e2 --- /dev/null +++ b/.github/workflows/UpdateWikiSubmodule.yml @@ -0,0 +1,39 @@ + +name: "Update Wiki Submodule" + +on: + push: + branches: [ master ] + pull_request: + types: [ opened, reopened ] + branches: [ master ] + schedule: + - cron: "0 18 * * *" # 日本時間で毎日午前三時に実行 + workflow_dispatch: + +jobs: + merge: + permissions: + contents: write + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: "Switch to Master Branch" + run: git checkout master + - name: "Load Submodule" + run: git submodule update --init --recursive + - name: "Update Wiki Directory" + run: | + cd wiki + git fetch origin + git pull origin master + cd .. + - name: "Configure git user information." + run: | + git config --local user.email "noreply@localhost" + git config --local user.name "[BOT] Wiki Submodule Updater" + - name: "Commit & Push" + run: | + git add wiki + git commit -m "[BOT] Update Wiki Submodule to the Current Latest version" || exit $(($? - 1)) + git push From 3f987115ebec9bd5b4ba3f84ec685b6126e6882b Mon Sep 17 00:00:00 2001 From: Takym <15681312+Takym@users.noreply.github.com> Date: Tue, 15 Jul 2025 21:23:46 +0900 Subject: [PATCH 30/40] =?UTF-8?q?=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/UpdateWikiSubmodule.yml | 2 +- serve.cmd | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 serve.cmd diff --git a/.github/workflows/UpdateWikiSubmodule.yml b/.github/workflows/UpdateWikiSubmodule.yml index 5b434e2..b044378 100644 --- a/.github/workflows/UpdateWikiSubmodule.yml +++ b/.github/workflows/UpdateWikiSubmodule.yml @@ -8,7 +8,7 @@ on: types: [ opened, reopened ] branches: [ master ] schedule: - - cron: "0 18 * * *" # 日本時間で毎日午前三時に実行 + - cron: "0 18 * * *" # 日本時間で毎日午前三時に自動実行 workflow_dispatch: jobs: diff --git a/serve.cmd b/serve.cmd new file mode 100644 index 0000000..d326a8a --- /dev/null +++ b/serve.cmd @@ -0,0 +1,2 @@ +@echo off +wsl bundle exec jekyll s From b429ff5edfddae2c30990006092c6c017c214276 Mon Sep 17 00:00:00 2001 From: Takym <15681312+Takym@users.noreply.github.com> Date: Tue, 15 Jul 2025 21:38:35 +0900 Subject: [PATCH 31/40] =?UTF-8?q?=E3=83=AF=E3=83=BC=E3=82=AF=E3=83=95?= =?UTF-8?q?=E3=83=AD=E3=83=BC=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/UpdateWikiSubmodule.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/UpdateWikiSubmodule.yml b/.github/workflows/UpdateWikiSubmodule.yml index b044378..582cb6b 100644 --- a/.github/workflows/UpdateWikiSubmodule.yml +++ b/.github/workflows/UpdateWikiSubmodule.yml @@ -19,7 +19,9 @@ jobs: steps: - uses: actions/checkout@v4 - name: "Switch to Master Branch" - run: git checkout master + run: | + git fetch origin + git checkout master - name: "Load Submodule" run: git submodule update --init --recursive - name: "Update Wiki Directory" From 4e5c5bfdac1ff0e4b32953cb5de0584617038402 Mon Sep 17 00:00:00 2001 From: "[BOT] Wiki Submodule Updater" Date: Tue, 15 Jul 2025 12:38:53 +0000 Subject: [PATCH 32/40] [BOT] Update Wiki Submodule to the Current Latest version --- wiki | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiki b/wiki index 4e4130f..c66a661 160000 --- a/wiki +++ b/wiki @@ -1 +1 @@ -Subproject commit 4e4130f30d81eee8d8bc0a11f7ea97e7926113ec +Subproject commit c66a6618fc39c5cb7ebdf32a183e39f7c51d2e8f From 603cf51ddffdc3d44132c832a960127c4a150149 Mon Sep 17 00:00:00 2001 From: Takym <15681312+Takym@users.noreply.github.com> Date: Tue, 15 Jul 2025 21:45:50 +0900 Subject: [PATCH 33/40] =?UTF-8?q?=E3=82=B9=E3=83=86=E3=83=BC=E3=82=BF?= =?UTF-8?q?=E3=82=B9=E3=83=90=E3=83=83=E3=82=B8=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 99ae96f..cf911ed 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,6 @@ +# osdev-jp +[![Update Wiki Submodule](https://github.com/osdev-jp/osdev-jp.github.io/actions/workflows/UpdateWikiSubmodule.yml/badge.svg)](https://github.com/osdev-jp/osdev-jp.github.io/actions/workflows/UpdateWikiSubmodule.yml) + ## 第45回自作OSもくもく会オンラインのご案内! OS自作をやっている人々で集まって,進捗を共有したり,みんなで黙々と作業する時間を取る会です! 5月31日(土)開催です! @@ -45,4 +48,3 @@ SlackかMLのいずれか(または両方)へ参加いただくことでosde ## 行動規範(Code of Conduct) osdev-jpの主催するイベント、およびosdev-jpが管理するコミュニティに関わる全ての方には [osdev-jp Code of Conduct](code-of-conduct.md) に記載されている内容を遵守することが求められます。必ずご一読ください。 - From 508041dd15823b25b0699f0dae93f7ee69fb0fa2 Mon Sep 17 00:00:00 2001 From: "[BOT] Wiki Submodule Updater" Date: Tue, 15 Jul 2025 12:49:43 +0000 Subject: [PATCH 34/40] [BOT] Update Wiki Submodule to the Current Latest version --- wiki | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiki b/wiki index c66a661..88049b7 160000 --- a/wiki +++ b/wiki @@ -1 +1 @@ -Subproject commit c66a6618fc39c5cb7ebdf32a183e39f7c51d2e8f +Subproject commit 88049b76659a2e6672232f58f21b1273ef61bc4e From 066df4081df3d37950f4eaee26db36d19aeaade5 Mon Sep 17 00:00:00 2001 From: "[BOT] Wiki Submodule Updater" Date: Wed, 16 Jul 2025 11:56:13 +0000 Subject: [PATCH 35/40] [BOT] Update Wiki Submodule to the Current Latest version --- wiki | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiki b/wiki index 88049b7..e784ff4 160000 --- a/wiki +++ b/wiki @@ -1 +1 @@ -Subproject commit 88049b76659a2e6672232f58f21b1273ef61bc4e +Subproject commit e784ff4e69709b8f8fecc9ff3a18127d77215d3d From ca4a75df45625f5dc87ae080bc5c6ec70ea55f49 Mon Sep 17 00:00:00 2001 From: "[BOT] Wiki Submodule Updater" Date: Thu, 17 Jul 2025 18:18:19 +0000 Subject: [PATCH 36/40] [BOT] Update Wiki Submodule to the Current Latest version --- wiki | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiki b/wiki index e784ff4..cfdbbb0 160000 --- a/wiki +++ b/wiki @@ -1 +1 @@ -Subproject commit e784ff4e69709b8f8fecc9ff3a18127d77215d3d +Subproject commit cfdbbb0db12760b03e0afe6e8b5dc4c1f05347cd From ce26c614194fa9e177cd91896d8e6d4dcfbc5d64 Mon Sep 17 00:00:00 2001 From: "[BOT] Wiki Submodule Updater" Date: Mon, 28 Jul 2025 18:19:14 +0000 Subject: [PATCH 37/40] [BOT] Update Wiki Submodule to the Current Latest version --- wiki | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiki b/wiki index cfdbbb0..02b9322 160000 --- a/wiki +++ b/wiki @@ -1 +1 @@ -Subproject commit cfdbbb0db12760b03e0afe6e8b5dc4c1f05347cd +Subproject commit 02b93220d6f2440aba2abf078600729420d5fafa From b542e64818d74fbf1b6e0f054324bf698116178a Mon Sep 17 00:00:00 2001 From: "[BOT] Wiki Submodule Updater" Date: Thu, 31 Jul 2025 11:25:18 +0000 Subject: [PATCH 38/40] [BOT] Update Wiki Submodule to the Current Latest version --- wiki | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiki b/wiki index 02b9322..10ea6c6 160000 --- a/wiki +++ b/wiki @@ -1 +1 @@ -Subproject commit 02b93220d6f2440aba2abf078600729420d5fafa +Subproject commit 10ea6c679d567524d3c7024a77640b9e54a4ff14 From 05c6cd3679c57a6dad1bbbeb52fd38f1d009bf80 Mon Sep 17 00:00:00 2001 From: "[BOT] Wiki Submodule Updater" Date: Mon, 4 Aug 2025 17:47:49 +0000 Subject: [PATCH 39/40] [BOT] Update Wiki Submodule to the Current Latest version --- wiki | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiki b/wiki index 10ea6c6..1211724 160000 --- a/wiki +++ b/wiki @@ -1 +1 @@ -Subproject commit 10ea6c679d567524d3c7024a77640b9e54a4ff14 +Subproject commit 12117242394e39659638f6f5412f6ee27a577338 From 96f7aecf43407b27438953968e79e3eb15888a92 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Aug 2025 19:22:24 +0000 Subject: [PATCH 40/40] Bump actions/checkout from 4 to 5 in /.github/workflows 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/UpdateWikiSubmodule.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/UpdateWikiSubmodule.yml b/.github/workflows/UpdateWikiSubmodule.yml index 582cb6b..c837b22 100644 --- a/.github/workflows/UpdateWikiSubmodule.yml +++ b/.github/workflows/UpdateWikiSubmodule.yml @@ -17,7 +17,7 @@ jobs: contents: write runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: "Switch to Master Branch" run: | git fetch origin