Skip to content

Commit

Permalink
Update versions of used actions in CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
diegoferigo committed May 17, 2024
1 parent 42c0e0c commit effad94
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ jobs:

steps:

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.*"

Expand All @@ -50,7 +50,7 @@ jobs:
python -c "import packaging.version as v; v.Version(\"$(python -m setuptools_scm)\")"
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
path: dist/*
name: dist
Expand Down Expand Up @@ -86,11 +86,11 @@ jobs:

- name: Set up Python
if: matrix.type == 'apt'
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}

- uses: conda-incubator/setup-miniconda@v2
- uses: conda-incubator/setup-miniconda@v3
if: matrix.type == 'conda'
with:
python-version: ${{ matrix.python }}
Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:
libsdformat13
- name: Download Python packages
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
path: dist
name: dist
Expand All @@ -152,7 +152,7 @@ jobs:
env:
ROD_LOGGING_LEVEL: DEBUG

- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Run tests
run: pytest
Expand All @@ -167,7 +167,7 @@ jobs:
steps:

- name: Download Python packages
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
path: dist
name: dist
Expand Down

0 comments on commit effad94

Please sign in to comment.