From 02b1efe2dd2762b59fafa7acc6be60ea3f2e48ea Mon Sep 17 00:00:00 2001 From: Jean-Baptiste <87148630+Jean-BaptisteC@users.noreply.github.com> Date: Tue, 2 Jan 2024 15:29:45 +0100 Subject: [PATCH] ci: Update Github Actions (#84) --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index cafa3a0..f95db2b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -24,7 +24,7 @@ jobs: python-version: - 3.9 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 with: @@ -43,7 +43,7 @@ jobs: python -m unittest discover -v -s exodus_core -p "test_*.py" python setup.py sdist - name: Upload archive - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: release path: dist @@ -53,9 +53,9 @@ jobs: if: github.event_name == 'push' && github.ref_type == 'tag' runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Download archive - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: release path: dist