From 3003bb8bb67517063417501573bdd77b0fcf1277 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 15 Oct 2023 20:04:22 +0000 Subject: [PATCH] Update actions/checkout action to v4 --- .github/workflows/container-build-push.yaml | 2 +- .github/workflows/container-build.yaml | 2 +- .github/workflows/format-lint.yaml | 2 +- .github/workflows/typecheck-unittest.yaml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/container-build-push.yaml b/.github/workflows/container-build-push.yaml index b7a47a76..9e61dcb6 100644 --- a/.github/workflows/container-build-push.yaml +++ b/.github/workflows/container-build-push.yaml @@ -14,7 +14,7 @@ jobs: runs-on: self-hosted steps: - name: Checkout the GitHub repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build the CNeuroMax image run: podman build -t cneuromod/cneuromax:latest -f Containerfile . - name: Push the CNeuroMax image to Docker Hub diff --git a/.github/workflows/container-build.yaml b/.github/workflows/container-build.yaml index 4ec64341..c4b858e9 100644 --- a/.github/workflows/container-build.yaml +++ b/.github/workflows/container-build.yaml @@ -14,6 +14,6 @@ jobs: runs-on: self-hosted steps: - name: Checkout the GitHub repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build the tentative CNeuroMax image run: podman build -f Containerfile . diff --git a/.github/workflows/format-lint.yaml b/.github/workflows/format-lint.yaml index 830d5335..8cb5de08 100644 --- a/.github/workflows/format-lint.yaml +++ b/.github/workflows/format-lint.yaml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Checkout the GitHub repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Python uses: actions/setup-python@v4 with: diff --git a/.github/workflows/typecheck-unittest.yaml b/.github/workflows/typecheck-unittest.yaml index a43a833a..b08aa4dc 100644 --- a/.github/workflows/typecheck-unittest.yaml +++ b/.github/workflows/typecheck-unittest.yaml @@ -25,7 +25,7 @@ jobs: - name: Pull the container image run: podman pull docker.io/cneuromod/cneuromax:latest - name: Checkout the GitHub repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Run mypy run: > podman run --rm -v $PWD:/cneuromax -w /cneuromax