From 51f0fe5f960a8cf10356022ba4fab47beacba2cd Mon Sep 17 00:00:00 2001 From: Jan Maack Kjerbye <50995332+janhalen@users.noreply.github.com> Date: Wed, 19 Jun 2024 12:46:47 +0200 Subject: [PATCH 01/10] Create gh_actions_updater.yml Added updater --- .github/workflows/gh_actions_updater.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/gh_actions_updater.yml diff --git a/.github/workflows/gh_actions_updater.yml b/.github/workflows/gh_actions_updater.yml new file mode 100644 index 0000000..09eb593 --- /dev/null +++ b/.github/workflows/gh_actions_updater.yml @@ -0,0 +1,20 @@ +name: GitHub Actions Version Updater + +on: + schedule: + # Automatically run on every Sunday + - cron: '0 0 * * 0' + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + # [Required] Access token with `workflow` scope. + token: ${{ secrets.WORKFLOW_SECRET }} + - name: Run GitHub Actions Version Updater + uses: saadmk11/github-actions-version-updater@v0.8.1 + with: + # [Required] Access token with `workflow` scope. + token: ${{ secrets.WORKFLOW_SECRET }} From 7b266205fe08c286ed10caf1d4cd40b0502e1a30 Mon Sep 17 00:00:00 2001 From: Jan Maack Kjerbye <50995332+janhalen@users.noreply.github.com> Date: Wed, 19 Jun 2024 12:48:14 +0200 Subject: [PATCH 02/10] Update pages.yml Deploy to testing version of pages --- .github/workflows/pages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 6564156..5318784 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -8,7 +8,7 @@ name: Deploy Jekyll site to Pages on: push: - branches: ["main"] + branches: ["testing"] # Allows you to run this workflow manually from the Actions tab workflow_dispatch: From 7ea695422b774af85c8a7fb85af7caa001829b95 Mon Sep 17 00:00:00 2001 From: Jan Maack Kjerbye <50995332+janhalen@users.noreply.github.com> Date: Wed, 19 Jun 2024 12:49:03 +0200 Subject: [PATCH 03/10] Update gh_actions_updater.yml Added ability to lauch update check on demand --- .github/workflows/gh_actions_updater.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/gh_actions_updater.yml b/.github/workflows/gh_actions_updater.yml index 09eb593..34fe6ab 100644 --- a/.github/workflows/gh_actions_updater.yml +++ b/.github/workflows/gh_actions_updater.yml @@ -4,6 +4,8 @@ on: schedule: # Automatically run on every Sunday - cron: '0 0 * * 0' + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: jobs: build: From 1da7f975933d1caaf5b8488bf853d2570b3e2980 Mon Sep 17 00:00:00 2001 From: Jan Maack Kjerbye <50995332+janhalen@users.noreply.github.com> Date: Wed, 19 Jun 2024 12:54:39 +0200 Subject: [PATCH 04/10] Update gh_actions_updater.yml Yaml indentation bugfix --- .github/workflows/gh_actions_updater.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/gh_actions_updater.yml b/.github/workflows/gh_actions_updater.yml index 34fe6ab..1fa1a07 100644 --- a/.github/workflows/gh_actions_updater.yml +++ b/.github/workflows/gh_actions_updater.yml @@ -5,7 +5,7 @@ on: # Automatically run on every Sunday - cron: '0 0 * * 0' # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: + workflow_dispatch: jobs: build: From a9bf310001a67e321389eaa5cd9eadf27d42ab7b Mon Sep 17 00:00:00 2001 From: Jan Maack Kjerbye <50995332+janhalen@users.noreply.github.com> Date: Wed, 19 Jun 2024 13:13:59 +0200 Subject: [PATCH 05/10] Delete .github/workflows/gh_actions_updater.yml Switching to standard dependabot --- .github/workflows/gh_actions_updater.yml | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 .github/workflows/gh_actions_updater.yml diff --git a/.github/workflows/gh_actions_updater.yml b/.github/workflows/gh_actions_updater.yml deleted file mode 100644 index 1fa1a07..0000000 --- a/.github/workflows/gh_actions_updater.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: GitHub Actions Version Updater - -on: - schedule: - # Automatically run on every Sunday - - cron: '0 0 * * 0' - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - with: - # [Required] Access token with `workflow` scope. - token: ${{ secrets.WORKFLOW_SECRET }} - - name: Run GitHub Actions Version Updater - uses: saadmk11/github-actions-version-updater@v0.8.1 - with: - # [Required] Access token with `workflow` scope. - token: ${{ secrets.WORKFLOW_SECRET }} From e97fb148b642d0bfc13a73d3061b57364f43c08d Mon Sep 17 00:00:00 2001 From: Jan Maack Kjerbye <50995332+janhalen@users.noreply.github.com> Date: Wed, 19 Jun 2024 13:17:46 +0200 Subject: [PATCH 06/10] Update dependabot.yml added "github-actions" ecosystem --- .github/dependabot.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index ff1a325..49f48fa 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -3,6 +3,12 @@ updates: - package-ecosystem: bundler directory: / schedule: - interval: daily + interval: "weekly" allow: - dependency-type: direct + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + # Check for updates to GitHub Actions every week + interval: "weekly" From 26c73e4603de6d318505d31dde1ec0888eb175a7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 19 Jun 2024 11:18:06 +0000 Subject: [PATCH 07/10] build(deps): Bump actions/upload-pages-artifact from 1 to 3 Bumps [actions/upload-pages-artifact](https://github.com/actions/upload-pages-artifact) from 1 to 3. - [Release notes](https://github.com/actions/upload-pages-artifact/releases) - [Commits](https://github.com/actions/upload-pages-artifact/compare/v1...v3) --- updated-dependencies: - dependency-name: actions/upload-pages-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/pages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 5318784..0febe4b 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -47,7 +47,7 @@ jobs: JEKYLL_ENV: production - name: Upload artifact # Automatically uploads an artifact from the './_site' directory by default - uses: actions/upload-pages-artifact@v1 + uses: actions/upload-pages-artifact@v3 # Deployment job deploy: From d62f1baaca441b7be468ad22b1ea21b4d2f05387 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 19 Jun 2024 11:18:09 +0000 Subject: [PATCH 08/10] build(deps): Bump actions/checkout from 3 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [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/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 2 +- .github/workflows/pages.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a7b5e9b..10a1ab8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Ruby uses: ruby/setup-ruby@v1 with: diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 5318784..92df997 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -30,7 +30,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Ruby uses: ruby/setup-ruby@v1 with: From 9051fbea5c7d9e4b90909f9bccceb801055bf893 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 19 Jun 2024 11:18:12 +0000 Subject: [PATCH 09/10] build(deps): Bump actions/deploy-pages from 2 to 4 Bumps [actions/deploy-pages](https://github.com/actions/deploy-pages) from 2 to 4. - [Release notes](https://github.com/actions/deploy-pages/releases) - [Commits](https://github.com/actions/deploy-pages/compare/v2...v4) --- updated-dependencies: - dependency-name: actions/deploy-pages dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/pages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 5318784..5393642 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -59,4 +59,4 @@ jobs: steps: - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v2 + uses: actions/deploy-pages@v4 From 064931f62235c337e7676fbbaed53e3b3a4032da Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 19 Jun 2024 11:18:14 +0000 Subject: [PATCH 10/10] build(deps): Bump actions/configure-pages from 3 to 5 Bumps [actions/configure-pages](https://github.com/actions/configure-pages) from 3 to 5. - [Release notes](https://github.com/actions/configure-pages/releases) - [Commits](https://github.com/actions/configure-pages/compare/v3...v5) --- updated-dependencies: - dependency-name: actions/configure-pages dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/pages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 5318784..aea5507 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -39,7 +39,7 @@ jobs: cache-version: 0 # Increment this number if you need to re-download cached gems - name: Setup Pages id: pages - uses: actions/configure-pages@v3 + uses: actions/configure-pages@v5 - name: Build with Jekyll # Outputs to the './_site' directory by default run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"