diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 0c7874a..b3a3801 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -23,7 +23,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: 0 @@ -39,7 +39,7 @@ jobs: if: github.event_name == 'release' && github.event.action == 'published' steps: - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v8 with: name: Packages path: dist diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ecd49f6..f8bead2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,10 +17,10 @@ jobs: name: Format runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: 0 - - uses: actions/setup-python@v5 + - uses: actions/setup-python@v6 with: python-version: "3.x" - uses: pre-commit/action@v3.0.1 @@ -58,7 +58,7 @@ jobs: shell: bash -l {0} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: 0 @@ -74,13 +74,13 @@ jobs: export DATETIME_STRING=$(date +%Y%m%d%H%M%S) echo "DATETIME_STRING=${DATETIME_STRING}" >> $GITHUB_ENV - # - uses: actions/setup-python@v5 + # - uses: actions/setup-python@v6 # with: # python-version: ${{ matrix.python-version }} # allow-prereleases: true - name: Set up Python ${{ matrix.python-version }} with conda - uses: mamba-org/setup-micromamba@v1 + uses: mamba-org/setup-micromamba@v3 with: init-shell: bash environment-name: ${{env.REPOSITORY_NAME}}-py${{matrix.python-version}} @@ -99,11 +99,11 @@ jobs: --durations=20 -m "(not hardware) and (not tiled)" -s -vv - name: Upload test artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: ${{env.REPOSITORY_NAME}}-py${{env.PYTHONVER}}-${{env.DATETIME_STRING}} path: /tmp/srx-caproto-iocs/ retention-days: 14 - name: Upload coverage report - uses: codecov/codecov-action@v4.5.0 + uses: codecov/codecov-action@v7.0.0