Skip to content

Commit 5ae8f23

Browse files
committed
Fix all linting warnings
1 parent ca6fa25 commit 5ae8f23

File tree

5 files changed

+13
-4
lines changed

5 files changed

+13
-4
lines changed

.github/dependabot.yml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
version: 2
3+
updates:
4+
# Check for updates to GitHub Actions every week
5+
- package-ecosystem: "github-actions"
6+
directory: "/"
7+
schedule:
8+
interval: "weekly"
9+

.github/workflows/ansible-lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
steps:
1010
# Important: This sets up your GITHUB_WORKSPACE environment variable
11-
- uses: actions/checkout@v3
11+
- uses: actions/checkout@v4
1212

1313
- name: Lint Ansible Playbook
1414
uses: ansible/ansible-lint-action@v6

.github/workflows/linter.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
# Checkout the code base #
3030
##########################
3131
- name: Checkout Code
32-
uses: actions/checkout@v3
32+
uses: actions/checkout@v4
3333
with:
3434
# Full git history is needed to get a proper list of changed files within `super-linter`
3535
fetch-depth: 0

.github/workflows/superlinter.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
steps:
1414
- name: Checkout Code
15-
uses: actions/checkout@v3
15+
uses: actions/checkout@v4
1616
with:
1717
# Full git history is needed to get a proper list of changed files within `super-linter`
1818
fetch-depth: 0

ansible/parse_secrets_from_k8s.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,5 +76,5 @@
7676
manifest_file_ref: "{{ manifest_file_ref }}"
7777
kubeconfig: "{{ node_kubeconfigs.resources[0].data['lb-ext.kubeconfig'] | b64decode }}"
7878
vault_ca: "{{ vault_ca }}"
79-
vault_root_token: "{{ vault_data.root_token }}"
79+
vault_root_token: "{{ vault_data.root_token }}"
8080
vault_url: https://vault.vault.svc:8200

0 commit comments

Comments
 (0)