Skip to content

Commit 13fa5f4

Browse files
committed
Update GH build generator with newer versions and to limit running only on the local repository.
1 parent fa7d70c commit 13fa5f4

File tree

3 files changed

+14
-13
lines changed

3 files changed

+14
-13
lines changed

.github/workflows/generate.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,21 @@ on:
88
jobs:
99
build:
1010
name: Generate Reports using Ruby
11+
if: github.repository == 'w3c/rdf-tests'
1112
runs-on: ubuntu-latest
1213
permissions:
1314
# Give the default GITHUB_TOKEN write permission to commit and push the changed files back to the repository.
1415
contents: write
1516
steps:
16-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1718
- uses: ruby/setup-ruby@v1
1819
with:
19-
ruby-version: 3.4.1
20+
ruby-version: 3.4.3
2021
- name: Install dependencies
2122
run: bundle install
2223
- name: Generate Test Manifests
2324
run: bundle exec rake
24-
- uses: stefanzweifel/git-auto-commit-action@v4
25+
- uses: stefanzweifel/git-auto-commit-action@v5
2526
with:
2627
commit_message: Automated manifest generation
2728
commit_user_name: Report generation bot

Gemfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
source "https://rubygems.org"
2-
ruby "3.4.1"
2+
ruby "3.4.3"
33

44
gem 'rake'
55
gem 'json-ld'
66
gem 'rdf-turtle'
7-
gem 'haml', '~> 6.2'
8-
gem 'kramdown', '~> 2.4'
7+
gem 'haml', '~> 6.3'
8+
gem 'kramdown', '~> 2.5'
99
gem 'htmlbeautifier', '~> 1.4'
10-
gem 'logger', '~> 1.6'
10+
gem 'logger', '~> 1.7'
1111
gem 'ostruct', '~> 0.6'

Gemfile.lock

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ GEM
2929
kramdown (2.5.1)
3030
rexml (>= 3.3.9)
3131
link_header (0.0.8)
32-
logger (1.6.6)
32+
logger (1.7.0)
3333
matrix (0.4.2)
3434
multi_json (1.15.0)
3535
ostruct (0.6.1)
@@ -60,17 +60,17 @@ PLATFORMS
6060
x86_64-linux
6161

6262
DEPENDENCIES
63-
haml (~> 6.2)
63+
haml (~> 6.3)
6464
htmlbeautifier (~> 1.4)
6565
json-ld
66-
kramdown (~> 2.4)
67-
logger (~> 1.6)
66+
kramdown (~> 2.5)
67+
logger (~> 1.7)
6868
ostruct (~> 0.6)
6969
rake
7070
rdf-turtle
7171

7272
RUBY VERSION
73-
ruby 3.4.1p0
73+
ruby 3.4.3p32
7474

7575
BUNDLED WITH
76-
2.5.19
76+
2.6.9

0 commit comments

Comments
 (0)