Skip to content

Commit 8b542f5

Browse files
(PE-40707) fix xattr and validation on yaml file
1 parent 7fca703 commit 8b542f5

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed
Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,32 @@
1+
---
12
name: Validate Puppetcore Gem Sources
2-
33
on:
44
workflow_dispatch:
55
inputs:
66
ref:
7-
description: 'Branch, tag or SHA to checkout'
7+
description: Branch, tag or SHA to checkout
88
required: true
9-
default: 'main'
10-
9+
default: main
1110
jobs:
1211
verify-gemfile:
1312
runs-on: ubuntu-latest
1413
name: Verify Gemfile Dependencies
15-
1614
env:
1715
PUPPET_AUTH_TOKEN: ${{ secrets.PUPPET_AUTH_TOKEN }}
18-
BUNDLE_RUBYGEMS___PUPPETCORE__PUPPET__COM: "forge-key:${{ secrets.PUPPET_AUTH_TOKEN }}"
19-
16+
BUNDLE_RUBYGEMS___PUPPETCORE__PUPPET__COM: forge-key:${{ secrets.PUPPET_AUTH_TOKEN }}
2017
steps:
2118
- name: Checkout repository
2219
uses: actions/checkout@v4
2320
with:
2421
ref: ${{ github.event.inputs.ref }}
25-
2622
- name: Set up Ruby
2723
uses: ruby/setup-ruby@v1
2824
with:
2925
ruby-version: '3.2'
3026
bundler-cache: true
3127
cache-version: 0 # Helps manage cache versions explicitly
3228
working-directory: .
33-
3429
- name: Install dependencies
3530
run: bundle install
36-
3731
- name: Run Gemfile verification test
3832
run: bundle exec rspec spec/support/gemfile_spec.rb --format documentation

0 commit comments

Comments
 (0)