Skip to content

Commit c5640bf

Browse files
committed
CentOS 10 Stream
1 parent 48ba43a commit c5640bf

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

Dockerfile

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
FROM quay.io/centos/centos:stream9
1+
FROM quay.io/centos/centos:stream10
22

33
LABEL "maintainer"="L3D <[email protected]>"
4-
LABEL "repository"="https://github.com/roles-ansible/check-ansible-centos-centos9-action.git"
5-
LABEL "homepage"="https://github.com/roles-ansible/check-ansible-centos-centos9-action"
4+
LABEL "repository"="https://github.com/roles-ansible/check-ansible-centos-centos10-action.git"
5+
LABEL "homepage"="https://github.com/roles-ansible/check-ansible-centos-centos10-action"
66

7-
LABEL "com.github.actions.name"="check-ansible-centos-centos9"
8-
LABEL "com.github.actions.description"="Check ansible role or playbook with CentOS centos9"
7+
LABEL "com.github.actions.name"="check-ansible-centos-centos10"
8+
LABEL "com.github.actions.description"="Check ansible role or playbook with CentOS 10"
99
LABEL "com.github.actions.icon"="aperture"
1010
LABEL "com.github.actions.color"="green"
1111

README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
[![Github Marketplace](https://raw.githubusercontent.com/roles-ansible/check-ansible-centos-centos9-action/main/.github/marketplace.svg?sanitize=true)](https://github.com/marketplace/actions/check-ansible-centos-centos9)
2-
[![MIT License](https://raw.githubusercontent.com/roles-ansible/check-ansible-centos-centos9-action/main/.github/license.svg?sanitize=true)](https://github.com/roles-ansible/check-ansible-centos-centos9-action/blob/main/LICENSE)
1+
[![Github Marketplace](https://raw.githubusercontent.com/roles-ansible/check-ansible-centos-centos10-action/main/.github/marketplace.svg?sanitize=true)](https://github.com/marketplace/actions/check-ansible-centos-centos10)
2+
[![MIT License](https://raw.githubusercontent.com/roles-ansible/check-ansible-centos-centos10-action/main/.github/license.svg?sanitize=true)](https://github.com/roles-ansible/check-ansible-centos-centos10-action/blob/main/LICENSE)
33

4-
Check Ansible CentOS centos9
5-
=======================
6-
This action allows you to test your ansible role or your playbook in a Docker Container with ``quay.io/centos/centos:stream9``.
4+
Check Ansible CentOS 10 Stream
5+
==============================
6+
This action allows you to test your ansible role or your playbook in a Docker Container with ``quay.io/centos/centos:stream10``.
77

88
## Usage
9-
To use the action simply create an ``ansible-centos-centos9.yml`` *(or choose custom ``*.yml`` name)* in the ``.github/workflows/`` directory.
9+
To use the action simply create an ``ansible-centos-centos10.yml`` *(or choose custom ``*.yml`` name)* in the ``.github/workflows/`` directory.
1010

1111
For example:
1212

1313
```yaml
1414
---
15-
name: Ansible check centos:stream9 # feel free to pick your own name
15+
name: Ansible check centos:stream10 # feel free to pick your own name
1616

1717
# yamllint disable-line rule:truthy
1818
on: [push, pull_request]
@@ -26,9 +26,9 @@ jobs:
2626
- name: checkout git repo
2727
uses: actions/checkout@v3
2828

29-
- name: ansible check with quay.io/centos/centos:stream9
29+
- name: ansible check with quay.io/centos/centos:stream10
3030
# optionally replace "main" with any valid git ref
31-
uses: roles-ansible/check-ansible-centos-centos9-action@main
31+
uses: roles-ansible/check-ansible-centos-centos10-action@main
3232
with:
3333
targets: "./"
3434
# [required]

0 commit comments

Comments
 (0)