Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/static_code_analysis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
name: Run checks

env:
ruby_version: '3.1'
ruby_version: '3.3'
extra_checks: check:symlinks check:git_ignore check:dot_underscore check:test_file
PUPPET_FORGE_TOKEN: 'YES'

Expand All @@ -19,6 +19,10 @@ jobs:
with:
fetch-depth: 0

# Patron, which is a transitive dependency of beaker-abs and Bolt, requires cURL libraries
- name: Install cURL
run: sudo apt install -y curl

- name: Install ruby version ${{ env.ruby_version }}
uses: ruby/setup-ruby@v1
with:
Expand Down