Skip to content

Commit

Permalink
Nightly Integration Tests: Upgrade Deprecated Action Versions (#193)
Browse files Browse the repository at this point in the history
  • Loading branch information
ofir-frd authored Oct 27, 2024
1 parent dd2f208 commit 3c9a7b9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/nightly_regression.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ jobs:
build-executable:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: '3.12'

# Step to cache Poetry dependencies
- name: Cache Poetry dependencies
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
~/.cache/pypoetry
Expand All @@ -36,7 +36,7 @@ jobs:
- name: Build Executable
run: make installer
- name: Upload Executable
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: cover-agent
path: dist/cover-agent*
Expand All @@ -54,11 +54,11 @@ jobs:
steps:
# Step 1: Check out the repository code
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

# Step 2: Download the artifact
- name: Download artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: cover-agent
path: dist/
Expand Down

0 comments on commit 3c9a7b9

Please sign in to comment.