Skip to content

Commit

Permalink
(chore) upgraded missing versions of checkout and python setup in cicd
Browse files Browse the repository at this point in the history
  • Loading branch information
jspaezp committed Aug 30, 2024
1 parent 0c5ce44 commit 5546b43
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/CICD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
# Initial Setup
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# Documentation setup
- name: Setup Quarto
Expand All @@ -63,7 +63,7 @@ jobs:
run: quarto --version

# Python setup
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: View Python --version
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
needs: ci
if: endsWith(github.ref, 'heads/release') && (github.event_name == 'push')
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
Expand All @@ -110,7 +110,7 @@ jobs:
run: quarto --version

# Python setup
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: View Python --version
Expand Down

0 comments on commit 5546b43

Please sign in to comment.