Skip to content

Commit

Permalink
bump GHaction versions
Browse files Browse the repository at this point in the history
  • Loading branch information
thlava-cesnet committed Sep 5, 2024
1 parent 4276107 commit 1e968de
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ jobs:
matrix:
python-version: [ "3.9", "3.10" ]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -28,7 +28,7 @@ jobs:
redis-version: 7

- name: Cache pip
uses: actions/cache@v3
uses: actions/cache@v4
with:
# This path is specific to Ubuntu
path: ~/.cache/pip
Expand Down Expand Up @@ -70,13 +70,15 @@ jobs:
.venv-server/bin/pip freeze >> requirements.txt
- name: Archive production artifacts
uses: actions/upload-artifact@v3
if: matrix.python-version == '3.10'
uses: actions/upload-artifact@v4
with:
name: dist
path: dist

- name: Archive production artifacts
uses: actions/upload-artifact@v3
if: matrix.python-version == '3.10'
uses: actions/upload-artifact@v4
with:
name: requirements.txt
path: requirements.txt
2 changes: 1 addition & 1 deletion .github/workflows/push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
needs: build
steps:
- name: Use built artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: dist
path: dist
Expand Down

0 comments on commit 1e968de

Please sign in to comment.