Skip to content

Commit e9d5634

Browse files
committed
(maint) Housekeeping
Update Checkout Action from v4 to v6, update Ruby version in static code analysis from the EOL Ruby version 3.1 to 3.3.
1 parent 431fe3e commit e9d5634

6 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/auto_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
- name: "Checkout Source"
1717
if: ${{ github.repository_owner == 'puppetlabs' }}
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v6
1919
with:
2020
fetch-depth: 0
2121
persist-credentials: false

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515

1616
- name: "Checkout"
17-
uses: "actions/checkout@v4"
17+
uses: "actions/checkout@v6"
1818

1919
- name: "Run yaml-lint"
2020
uses: "ibiqlik/action-yamllint@v3"

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout code
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v6
1313
with:
1414
ref: ${{ github.ref }}
1515
clean: true
@@ -33,7 +33,7 @@ jobs:
3333
runs-on: ubuntu-latest
3434
steps:
3535
- name: Checkout code
36-
uses: actions/checkout@v4
36+
uses: actions/checkout@v6
3737
with:
3838
ref: ${{ github.ref }}
3939
clean: true

.github/workflows/static_code_analysis.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ jobs:
88
name: Run checks
99

1010
env:
11-
ruby_version: '3.1'
11+
ruby_version: '3.3'
1212
extra_checks: check:symlinks check:git_ignore check:dot_underscore check:test_file
1313
PUPPET_FORGE_TOKEN: 'YES'
1414

1515
runs-on: 'ubuntu-latest'
1616
steps:
1717
- name: Checkout current PR code
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v6
1919
with:
2020
fetch-depth: 0
2121

.github/workflows/unit_tests_with_nightly_puppet_gem.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
with:
4141
service-key: ${{ secrets.TWINGATE_PUBLIC_REPO_KEY }}
4242
- name: Checkout current PR code
43-
uses: actions/checkout@v4
43+
uses: actions/checkout@v6
4444

4545
- name: Install ruby version ${{ matrix.ruby }}
4646
uses: ruby/setup-ruby@v1

.github/workflows/unit_tests_with_released_puppet_gem.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ${{ matrix.os }}
2929
steps:
3030
- name: Checkout current PR code
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v6
3232

3333
- name: Install ruby version ${{ matrix.ruby }}
3434
uses: ruby/setup-ruby@v1

0 commit comments

Comments
 (0)