Skip to content

Commit 9404b16

Browse files
committed
(PA-5803) Update Checkout GitHub Action
The Checkout GitHub Action v3 uses Node 16, which hit end-of-life on September 11, 2023. This commit updates all instances of the Checkout Action from v3 to v4.
1 parent 770aaae commit 9404b16

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
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 }}

0 commit comments

Comments
 (0)