This commit duplicates the telemetry logic in the actions/deploy-pages action. This Gemfile already pulls in Faraday as a dependency of octokit; the change to Gemfile just makes its use explicit. There aren't any changes when you compare the resulting Gemfile.lock.
16 lines
518 B
Ruby
16 lines
518 B
Ruby
# frozen_string_literal: true
|
|
|
|
source "https://rubygems.org"
|
|
|
|
git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
|
|
|
|
# Manage our dependency on the version of the github-pages gem here.
|
|
gem "github-pages", "= 225"
|
|
|
|
# Explicitly include this gem here.
|
|
# It is not directly included in the github-pages gem list of dependencies,
|
|
# even though it is included in the original GitHub Pages build infrastructure.
|
|
gem "jekyll-include-cache", "= 0.2.1"
|
|
gem "jekyll-octicons", "~> 14.2"
|
|
gem "faraday", "~> 1.10"
|