Skip to content

Commit 932b978

Browse files
authored
Merge pull request #329 from mhashizume/PA-5803/main/checkout-action
(PA-5803) Update Checkout GitHub Action
2 parents 770aaae + f0bd1f9 commit 932b978

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

.github/workflows/checks.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout current PR
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1919
with:
2020
fetch-depth: 0
2121
- uses: ruby/setup-ruby@v1
@@ -33,7 +33,7 @@ jobs:
3333
runs-on: ubuntu-latest
3434
steps:
3535
- name: Checkout current PR
36-
uses: actions/checkout@v3
36+
uses: actions/checkout@v4
3737
with:
3838
fetch-depth: 0
3939
- uses: ruby/setup-ruby@v1

.github/workflows/mend.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: Mend Monitor
1212
steps:
1313
- name: Checkout current PR
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515
- name: Setup Ruby
1616
uses: ruby/setup-ruby@v1
1717
with:

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
release:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313
with:
1414
fetch-depth: '0'
1515
- name: Build gem

.github/workflows/rspec_tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
PUPPET_GEM_VERSION: ~> ${{ matrix.cfg.puppet_version }}
2525
steps:
2626
- name: Checkout current PR
27-
uses: actions/checkout@v3
27+
uses: actions/checkout@v4
2828
with:
2929
fetch-depth: 0
3030
- name: Install Ruby version ${{ matrix.cfg.ruby }}
@@ -53,7 +53,7 @@ jobs:
5353
PUPPET_GEM_VERSION: ~> ${{ matrix.cfg.puppet_version }}
5454
steps:
5555
- name: Checkout current PR
56-
uses: actions/checkout@v3
56+
uses: actions/checkout@v4
5757
with:
5858
fetch-depth: 0
5959
- name: Install Ruby version ${{ matrix.cfg.ruby }}

Gemfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ end
4343
# specific Puppet gem that includes libffi. To work around these issues, we have a separate "integration" group that we include when
4444
# testing Puppet 8 / Ruby 3.2 on Windows. See PA-5406 for more.
4545
group :integration do
46-
gem 'ffi'
46+
# Pin due to an issue with FFI, Windows, and Facter. See FACT-3434
47+
gem 'ffi', '1.15.5'
4748
end
4849

4950
# Find a location or specific version for a gem. place_or_version can be a

0 commit comments

Comments
 (0)