Skip to content

Commit

Permalink
Merge pull request #685 from gerrod3/correct-action-3.49
Browse files Browse the repository at this point in the history
Update actions to latest version and set CI python to 3.11 [3.49]
  • Loading branch information
gerrod3 authored Oct 16, 2024
2 parents 40ca78a + 0bcfa98 commit 2f6d22a
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 128 deletions.
6 changes: 4 additions & 2 deletions .github/actions/build_image/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,12 @@ runs:
shell: bash

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: 3.11

- name: Restore podman images from cache
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
key: base-images=${{ inputs.image_cache_key }}
path: base-images.tar
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ jobs:
fetch-depth: 0

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: 3.11

- name: Check commit message
env:
Expand Down Expand Up @@ -85,8 +87,6 @@ jobs:
image_name:
- pulp-minimal
- pulp
- galaxy-minimal
- galaxy
steps:
- uses: actions/checkout@v4

Expand Down
17 changes: 0 additions & 17 deletions .github/workflows/docs.yml

This file was deleted.

97 changes: 0 additions & 97 deletions .github/workflows/kanban.yml

This file was deleted.

15 changes: 6 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,6 @@ on:
required: false
default: '3.9'
type: string
schedule:
- cron: '0 1 * * *'
push:
branches:
- latest

concurrency:
group: ${{ github.ref_name }}-${{ github.workflow }}
Expand All @@ -33,7 +28,9 @@ jobs:
fetch-depth: 0

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: 3.11

- name: Update to the latest pip
run: python -m pip install --upgrade pip
Expand Down Expand Up @@ -69,7 +66,9 @@ jobs:
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: 3.11

- name: Install python deps
run: |
Expand Down Expand Up @@ -159,8 +158,6 @@ jobs:
image_name:
- pulp-minimal
- pulp
- galaxy-minimal
- galaxy
steps:
- uses: actions/checkout@v4

Expand Down

0 comments on commit 2f6d22a

Please sign in to comment.