diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 54e3e9e..3764e8f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python_version: ["3.9"] + python_version: ["3.10"] steps: - name: Check out code uses: actions/checkout@v2 @@ -24,9 +24,10 @@ jobs: path: ansible_collections/middleware_automation/keycloak - name: Set up Python ${{ matrix.python_version }} - uses: actions/setup-python@v1 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python_version }} + cache: 'pip' - name: Install yamllint, ansible and molecule run: | diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 7163a00..e46b1e8 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -32,9 +32,10 @@ jobs: fetch-depth: 0 - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: 3.9 + cache: 'pip' - name: Install doc dependencies run: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f8cdffe..3f47356 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,9 +24,10 @@ jobs: token: ${{ secrets.TRIGGERING_PAT }} - name: Set up Python - uses: actions/setup-python@v1 + uses: actions/setup-python@v4 with: python-version: "3.x" + cache: 'pip' - name: Get current version id: get_version diff --git a/galaxy.yml b/galaxy.yml index 26f69f6..d4232dc 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -23,7 +23,7 @@ tags: - java - runtimes - middleware - - A4MW + - a4mw dependencies: "middleware_automation.common": ">=1.0.0" "ansible.posix": ">=1.4.0"