From f36927fd387aa7201a0a006a9c57ecccb29cab09 Mon Sep 17 00:00:00 2001 From: Lucille Delisle Date: Tue, 30 Apr 2024 13:02:22 +0200 Subject: [PATCH] use actions checkout v4 --- .github/workflows/pylint.yml | 2 +- .github/workflows/python-publish.yml | 2 +- .github/workflows/test.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 2f0a3f9..30c7263 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -6,7 +6,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: mamba-org/setup-micromamba@main with: environment-file: ./HiCMatrix_env_ci.yml diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index 467ab2e..cd6dcb0 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -23,7 +23,7 @@ jobs: # IMPORTANT: this permission is mandatory for trusted publishing id-token: write steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python uses: actions/setup-python@v3 with: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 54528ce..cc3f0ce 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,7 +17,7 @@ jobs: - "3.9" - "3.10" steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Use python ${{ matrix.python-version }} run: echo -e "\n - python = ${{ matrix.python-version }}" >> ./HiCMatrix_env_ci.yml - uses: mamba-org/setup-micromamba@main @@ -43,7 +43,7 @@ jobs: - "3.9" - "3.10" steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Use python ${{ matrix.python-version }} run: echo -e "\n - python = ${{ matrix.python-version }}" >> ./HiCMatrix_env_ci.yml - uses: mamba-org/setup-micromamba@main