Skip to content

Commit 77806ff

Browse files
renovate[bot]silug
authored andcommitted
Update actions/checkout action to v5
1 parent 08f3742 commit 77806ff

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/pr_tests.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
name: 'Puppet Syntax'
3535
runs-on: ubuntu-latest
3636
steps:
37-
- uses: actions/checkout@v3
37+
- uses: actions/checkout@v5
3838
- name: "Install Ruby ${{matrix.puppet.ruby_version}}"
3939
uses: ruby/setup-ruby@v1 # ruby/setup-ruby@ec106b438a1ff6ff109590de34ddc62c540232e0
4040
with:
@@ -46,7 +46,7 @@ jobs:
4646
name: 'Puppet Style'
4747
runs-on: ubuntu-latest
4848
steps:
49-
- uses: actions/checkout@v3
49+
- uses: actions/checkout@v5
5050
- name: "Install Ruby ${{matrix.puppet.ruby_version}}"
5151
uses: ruby/setup-ruby@v1
5252
with:
@@ -61,7 +61,7 @@ jobs:
6161
runs-on: ubuntu-latest
6262
continue-on-error: true
6363
steps:
64-
- uses: actions/checkout@v3
64+
- uses: actions/checkout@v5
6565
- name: "Install Ruby ${{matrix.puppet.ruby_version}}"
6666
uses: ruby/setup-ruby@v1
6767
with:
@@ -75,7 +75,7 @@ jobs:
7575
name: 'File checks'
7676
runs-on: ubuntu-latest
7777
steps:
78-
- uses: actions/checkout@v3
78+
- uses: actions/checkout@v5
7979
- name: 'Install Ruby 2.7'
8080
uses: ruby/setup-ruby@v1
8181
with:
@@ -88,7 +88,7 @@ jobs:
8888
name: 'RELENG checks'
8989
runs-on: ubuntu-latest
9090
steps:
91-
- uses: actions/checkout@v3
91+
- uses: actions/checkout@v5
9292
- name: 'Install Ruby ${{matrix.puppet.ruby_version}}'
9393
uses: ruby/setup-ruby@v1
9494
with:
@@ -121,7 +121,7 @@ jobs:
121121
env:
122122
PUPPET_VERSION: ${{matrix.puppet.puppet_version}}
123123
steps:
124-
- uses: actions/checkout@v3
124+
- uses: actions/checkout@v5
125125
- name: 'Install Ruby ${{matrix.puppet.ruby_version}}'
126126
uses: ruby/setup-ruby@v1
127127
with:

.github/workflows/release_rpms.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ jobs:
194194
)
195195
196196
- name: Checkout code
197-
uses: actions/checkout@v3
197+
uses: actions/checkout@v5
198198
with:
199199
repository: ${{ env.TARGET_REPO }}
200200
ref: ${{ env.RELEASE_TAG }}

.github/workflows/tag_deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
steps:
5050
- name: "Assert '${{ github.ref }}' is a tag"
5151
run: '[[ "$GITHUB_REF" =~ ^refs/tags/ ]] || { echo "::error ::GITHUB_REF is not a tag: ${GITHUB_REF}"; exit 1 ; }'
52-
- uses: actions/checkout@v3
52+
- uses: actions/checkout@v5
5353
with:
5454
ref: ${{ github.ref }}
5555
clean: true
@@ -75,7 +75,7 @@ jobs:
7575
tag: ${{ steps.tag-check.outputs.tag }}
7676
steps:
7777
- name: Checkout code
78-
uses: actions/checkout@v3
78+
uses: actions/checkout@v5
7979
with:
8080
ref: ${{ github.ref }}
8181
clean: true
@@ -174,7 +174,7 @@ jobs:
174174
FORGE_API_URL: https://forgeapi.puppet.com/v3/releases
175175
steps:
176176
- name: Checkout code
177-
uses: actions/checkout@v3
177+
uses: actions/checkout@v5
178178
with:
179179
ref: ${{ github.ref }}
180180
clean: true

0 commit comments

Comments
 (0)