Skip to content

Commit afdfdb0

Browse files
chore(deps): update actions/checkout action to v5 (#895)
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 4075c45 commit afdfdb0

12 files changed

+13
-13
lines changed

.github/workflows/ansible-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-22.04
2727

2828
steps:
29-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
29+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
3030

3131
- name: Lint Ansible Playbook
3232
uses: ansible/ansible-lint@9765b8704b2c3f4ab782815b528e0393662e1c04 # v25

.github/workflows/galaxy-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
if: github.repository == 'dev-sec/ansible-collection-hardening'
1212
runs-on: ubuntu-22.04
1313
steps:
14-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
14+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
1515

1616
# deploy the collection first, because if it fails, we don't want
1717
# to update the galaxy.yml
@@ -22,7 +22,7 @@ jobs:
2222
galaxy_version: ${{ github.event.release.tag_name }}
2323

2424
# checkout master instead of the release-tag so we can push the galaxy.yml
25-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
25+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
2626
with:
2727
ref: master
2828

.github/workflows/mysql_hardening.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
# - fedora # geerlingguy.mysql does not support fedora
5757
steps:
5858
- name: Checkout repo
59-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
59+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
6060
with:
6161
path: ansible_collections/devsec/hardening
6262
submodules: true

.github/workflows/nginx_hardening.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
# - fedora # no support from geerlingguy role
5656
steps:
5757
- name: Checkout repo
58-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
58+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
5959
with:
6060
path: ansible_collections/devsec/hardening
6161
submodules: true

.github/workflows/os_hardening.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
- "/lib/systemd/systemd"
6161
steps:
6262
- name: Checkout repo
63-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
63+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
6464
with:
6565
path: ansible_collections/devsec/hardening
6666
submodules: true

.github/workflows/os_hardening_vm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
- generic/arch
5454
steps:
5555
- name: Checkout repo
56-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
56+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
5757
with:
5858
path: ansible_collections/devsec/hardening
5959
submodules: true

.github/workflows/prettier-md.yml

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

1717
steps:
1818
- name: Git checkout
19-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
19+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
2020
with:
2121
ref: ${{ github.head_ref }}
2222

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
if: github.repository == 'dev-sec/ansible-collection-hardening'
1414
runs-on: ubuntu-22.04
1515
steps:
16-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
16+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
1717
with:
1818
fetch-depth: 0
1919
ref: master

.github/workflows/roles-readme.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- ssh_hardening
2828
steps:
2929
- name: Check out code
30-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
30+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
3131

3232
- name: Set up Python
3333
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5

.github/workflows/ssh_hardening.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
- "/lib/systemd/systemd"
6464
steps:
6565
- name: Checkout repo
66-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
66+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
6767
with:
6868
path: ansible_collections/devsec/hardening
6969
submodules: true

0 commit comments

Comments
 (0)