Skip to content

Commit 574d3cc

Browse files
Merge pull request #107 from atelierdesmedias/fix-build
2 parents 0cdf6c7 + b54043e commit 574d3cc

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/jekyll.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-latest
2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@v3
25+
uses: actions/checkout@v4
2626
- name: NPM install
2727
run: npm install
2828
- name: Install Image Magick
@@ -34,7 +34,7 @@ jobs:
3434
cache-version: 0 # Increment this number if you need to re-download cached gems
3535
- name: Setup Pages
3636
id: pages
37-
uses: actions/configure-pages@v2
37+
uses: actions/configure-pages@v5
3838
- name: Build TinaCMS
3939
env:
4040
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
@@ -54,7 +54,7 @@ jobs:
5454
env:
5555
JEKYLL_ENV: production
5656
- name: Upload artifact
57-
uses: actions/upload-pages-artifact@v1
57+
uses: actions/upload-pages-artifact@v3
5858

5959
deploy:
6060
environment:
@@ -66,4 +66,4 @@ jobs:
6666
steps:
6767
- name: Deploy to GitHub Pages
6868
id: deployment
69-
uses: actions/deploy-pages@v1
69+
uses: actions/deploy-pages@v4

.github/workflows/lint.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ jobs:
88
runs-on: ubuntu-latest
99

1010
steps:
11-
- uses: actions/checkout@v3
12-
- uses: actions/setup-node@v3
11+
- uses: actions/checkout@v4
12+
- uses: actions/setup-node@v4
1313
with:
14-
node-version-file: '.nvmrc'
15-
cache: 'npm'
14+
node-version-file: ".nvmrc"
15+
cache: "npm"
1616
- run: npm install
1717
- uses: ruby/setup-ruby@v1
1818
with:
@@ -23,4 +23,4 @@ jobs:
2323
rubocop: true
2424
rubocop_command_prefix: bundle exec
2525
stylelint: true
26-
stylelint_extensions: 'scss'
26+
stylelint_extensions: "scss"

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ gem 'mini_magick', '~> 4.11.0'
88
gem 'octokit', '~> 6.0'
99
gem 'rake', '~> 13.2.1'
1010
gem 'rbnacl', '~> 7.1.1'
11-
gem 'rubocop', '~> 1.69.2'
11+
gem 'rubocop', '~> 1.71.1'
1212
gem 'stringex', '~> 2.8.5'
1313

1414
group :jekyll_plugins do

0 commit comments

Comments
 (0)