From ddad8d90caeeae64b97185457ccd3312288f1381 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 21 Jun 2023 19:24:06 +0000 Subject: [PATCH 1/4] Bump nokogiri from 1.13.10 to 1.15.2 in /test_projects/mojombo Bumps [nokogiri](https://github.com/sparklemotion/nokogiri) from 1.13.10 to 1.15.2. - [Release notes](https://github.com/sparklemotion/nokogiri/releases) - [Changelog](https://github.com/sparklemotion/nokogiri/blob/main/CHANGELOG.md) - [Commits](https://github.com/sparklemotion/nokogiri/compare/v1.13.10...v1.15.2) --- updated-dependencies: - dependency-name: nokogiri dependency-type: indirect ... Signed-off-by: dependabot[bot] --- test_projects/mojombo/Gemfile.lock | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test_projects/mojombo/Gemfile.lock b/test_projects/mojombo/Gemfile.lock index 8e58a49..60f8627 100644 --- a/test_projects/mojombo/Gemfile.lock +++ b/test_projects/mojombo/Gemfile.lock @@ -103,20 +103,20 @@ GEM rb-fsevent (>= 0.9.3) rb-inotify (>= 0.9.7) mercenary (0.3.6) - mini_portile2 (2.8.0) + mini_portile2 (2.8.2) minima (2.0.0) minitest (5.9.1) multipart-post (2.0.0) net-dns (0.8.0) - nokogiri (1.13.10) - mini_portile2 (~> 2.8.0) + nokogiri (1.15.2) + mini_portile2 (~> 2.8.2) racc (~> 1.4) octokit (4.6.0) sawyer (~> 0.8.0, >= 0.5.3) pathutil (0.14.0) forwardable-extended (~> 2.6) public_suffix (1.5.3) - racc (1.6.1) + racc (1.7.1) rb-fsevent (0.9.8) rb-inotify (0.9.7) ffi (>= 0.5.0) From a93aba3ca8b6160b64333f99f72ca596cf8b4ace Mon Sep 17 00:00:00 2001 From: yimysty Date: Thu, 29 Jun 2023 17:15:58 -0700 Subject: [PATCH 2/4] add override for pages_api_url --- entrypoint.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 3991b27..024fe95 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -13,7 +13,7 @@ DESTINATION_DIRECTORY=${GITHUB_WORKSPACE}/$INPUT_DESTINATION PAGES_GEM_HOME=$BUNDLE_APP_CONFIG GITHUB_PAGES_BIN=$PAGES_GEM_HOME/bin/github-pages -# Check if Gemfile's dependencies are satisfied or print a warning +# Check if Gemfile's dependencies are satisfied or print a warning if test -e "$SOURCE_DIRECTORY/Gemfile" && ! bundle check --dry-run --gemfile "$SOURCE_DIRECTORY/Gemfile"; then echo "::warning:: github-pages can't satisfy your Gemfile's dependencies." fi @@ -23,6 +23,7 @@ export JEKYLL_ENV="production" export JEKYLL_GITHUB_TOKEN=$INPUT_TOKEN export PAGES_REPO_NWO=$GITHUB_REPOSITORY export JEKYLL_BUILD_REVISION=$INPUT_BUILD_REVISION +export PAGES_API_URL=$GITHUB_API_URL # Set verbose flag if [ "$INPUT_VERBOSE" = 'true' ]; then From 652a437a31e182ead2cf6f93117f55472a9769bf Mon Sep 17 00:00:00 2001 From: yimysty Date: Thu, 29 Jun 2023 17:17:13 -0700 Subject: [PATCH 3/4] bump version --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 8682769..d95d4cc 100644 --- a/action.yml +++ b/action.yml @@ -28,4 +28,4 @@ inputs: default: ${{ github.token }} runs: using: 'docker' - image: 'docker://ghcr.io/actions/jekyll-build-pages:v1.0.7' + image: 'docker://ghcr.io/actions/jekyll-build-pages:v1.0.8' From cf9c2e10b9850573572e5c324f0ce19e89ab7148 Mon Sep 17 00:00:00 2001 From: "James M. Greene" Date: Fri, 30 Jun 2023 15:47:04 -0500 Subject: [PATCH 4/4] Remove steps to publish Docker major tag --- .github/workflows/release.yml | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index aba6000..665864d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -56,18 +56,3 @@ jobs: uses: actions/publish-action@v0.2.2 with: source-tag: ${{ env.TAG_NAME }} - - # Login to the GHCR Docker registry - - name: Log into registry ${{ env.REGISTRY }} - uses: docker/login-action@v2 - with: - registry: ${{ env.REGISTRY }} - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: Update Docker image tag - env: - NEW_TAG: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.update-major-tag.outputs.major-tag }} - SOURCE_TAG: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.TAG_NAME }} - run: | - docker buildx imagetools create --tag $NEW_TAG $SOURCE_TAG