Skip to content

Commit 2890ffd

Browse files
committed
Merge branch 'gantsign-master'
2 parents 8d65825 + 90072e6 commit 2890ffd

File tree

18 files changed

+231
-159
lines changed

18 files changed

+231
-159
lines changed

.github/dependabot.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: github-actions
4+
directory: "/"
5+
schedule:
6+
interval: weekly
7+
day: saturday
8+
- package-ecosystem: bundler
9+
directory: "/docs"
10+
schedule:
11+
interval: weekly
12+
day: saturday

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@ env:
1212
jobs:
1313
build:
1414
name: Build
15-
runs-on: ubuntu-18.04
15+
runs-on: ubuntu-20.04
1616

1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v2
19+
uses: actions/checkout@v3
2020

2121
- name: Set up Python
22-
uses: actions/setup-python@v2
22+
uses: actions/setup-python@v4
2323
with:
24-
python-version: '3.6'
24+
python-version: '3.8'
2525

2626
- name: Install Vagrantfile lint tool
2727
run: sudo gem install rubocop
@@ -45,7 +45,7 @@ jobs:
4545

4646
- name: Login to Docker Hub
4747
if: "!github.event.pull_request || (github.event.pull_request.head.repo.full_name == github.repository && !startsWith(github.head_ref, 'dependabot/'))"
48-
uses: docker/login-action@v1
48+
uses: docker/login-action@v2
4949
with:
5050
username: ${{ secrets.DOCKERHUB_USERNAME }}
5151
password: ${{ secrets.DOCKERHUB_TOKEN }}

.github/workflows/verify.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ env:
1010
jobs:
1111
verify:
1212
name: Verify
13-
runs-on: ubuntu-18.04
13+
runs-on: ubuntu-20.04
1414

1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v3
1818

1919
- name: Set up Python
20-
uses: actions/setup-python@v2
20+
uses: actions/setup-python@v4
2121
with:
22-
python-version: '3.6'
22+
python-version: '3.8'
2323

2424
- name: Install Vagrantfile lint tool
2525
run: sudo gem install rubocop
@@ -43,7 +43,7 @@ jobs:
4343

4444
- name: Login to Docker Hub
4545
if: "!github.event.pull_request || (github.event.pull_request.head.repo.full_name == github.repository && !startsWith(github.head_ref, 'dependabot/'))"
46-
uses: docker/login-action@v1
46+
uses: docker/login-action@v2
4747
with:
4848
username: ${{ secrets.DOCKERHUB_USERNAME }}
4949
password: ${{ secrets.DOCKERHUB_TOKEN }}

.vagrantuser.example

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@
5454
# - intellij
5555
# - java
5656
# - kubernetes
57-
# - lazygit
5857
# - maven
5958
# - maven-notifier
6059
# - nodejs

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ environment that you can fork to add your project specific configuration.
8686
* Docker
8787
* Helm
8888
* Visual Studio Code
89-
* lazygit
9089
* Git-GUI and Gitk
9190
* Postman
9291
* Open JDK

Vagrantfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Vagrant.configure(2) do |config|
4242
# https://docs.vagrantup.com.
4343

4444
# Every Vagrant development environment requires a box. You can search for
45-
# boxes at https://atlas.hashicorp.com/search.
45+
# boxes at https://app.vagrantup.com/boxes/search.
4646
# Important: use Bento boxes https://app.vagrantup.com/bento not the Canonical ones.
4747
# Bento boxes are officially-recommended by Vagrant https://www.vagrantup.com/docs/boxes.html
4848
config.vm.box = 'bento/ubuntu-20.04'

docs/Gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ source "https://rubygems.org"
99
# This will help ensure the proper Jekyll version is running.
1010
# Happy Jekylling!
1111

12-
gem 'github-pages', '216', group: :jekyll_plugins
12+
gem 'github-pages', '227', group: :jekyll_plugins
1313

1414
# If you want to use Jekyll native, uncomment the line below.
1515
# To upgrade, run `bundle update`.
@@ -22,5 +22,5 @@ gem 'minimal-mistakes-jekyll', '4.24.0'
2222
# If you have any plugins, put them here!
2323
group :jekyll_plugins do
2424
# gem "jekyll-archives"
25-
gem 'html-proofer', '3.19.2'
25+
gem 'html-proofer', '4.4.0'
2626
end

0 commit comments

Comments
 (0)