diff --git a/.github/workflows/ci_conda.yml b/.github/workflows/ci_conda.yml index 753244f..9c9c500 100644 --- a/.github/workflows/ci_conda.yml +++ b/.github/workflows/ci_conda.yml @@ -7,7 +7,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Set up Conda uses: conda-incubator/setup-miniconda@v3 diff --git a/.github/workflows/ci_docker.yml b/.github/workflows/ci_docker.yml index aa0f3a9..7feeb06 100644 --- a/.github/workflows/ci_docker.yml +++ b/.github/workflows/ci_docker.yml @@ -11,7 +11,7 @@ jobs: container: dolfinx/dolfinx:${{ matrix.container_version }} steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Install local package and dependencies run: | diff --git a/.github/workflows/code_formatting.yml b/.github/workflows/code_formatting.yml index f4f1163..f9cd057 100644 --- a/.github/workflows/code_formatting.yml +++ b/.github/workflows/code_formatting.yml @@ -6,7 +6,7 @@ jobs: lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Set up Python uses: actions/setup-python@v5