Skip to content

Commit 6f3e5af

Browse files
committed
Update github actions
1 parent 2b7162c commit 6f3e5af

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.github/workflows/push-to-develop.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,10 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout repo
14-
uses: actions/checkout@v3.3.0
14+
uses: actions/checkout@v4
1515
with:
1616
fetch-depth: 0
17+
filter: blob:none
1718
- name: Run the action
1819
uses: devops-infra/action-pull-request@v0.5.5
1920
with:

.github/workflows/validate_yaml_files.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,11 @@ jobs:
1515
validate-YAML:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v3.3.0
18+
- name: Checkout repo
19+
uses: actions/checkout@v4
20+
with:
21+
fetch-depth: 0
22+
filter: blob:none
1923
- id: yaml-lint
2024
name: yaml-lint
2125
uses: ibiqlik/action-yamllint@v3
@@ -24,7 +28,7 @@ jobs:
2428
format: colored
2529
config_file: .yamllint.yml
2630

27-
- uses: actions/upload-artifact@v3
31+
- uses: actions/upload-artifact@v4
2832
if: always()
2933
with:
3034
name: yamllint-logfile

0 commit comments

Comments
 (0)