diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 0c7874a..bca95c9 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@v5 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@v5 with: name: Packages path: dist diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ecd49f6..73195c7 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@v5 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@v5 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@v2 with: init-shell: bash environment-name: ${{env.REPOSITORY_NAME}}-py${{matrix.python-version}} @@ -106,4 +106,4 @@ jobs: retention-days: 14 - name: Upload coverage report - uses: codecov/codecov-action@v4.5.0 + uses: codecov/codecov-action@v5.5.1