From dbac5943d31dac983835ccccf3e31ff5d3b3e9e4 Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Tue, 30 May 2023 16:06:16 +0200 Subject: [PATCH] GitHub action: update to actions/checkout@v3 --- .github/workflows/ci-batsim.yml | 2 +- .github/workflows/ci-bigdft.yml | 2 +- .github/workflows/ci-starpu.yml | 2 +- .github/workflows/ci-wrench.yml | 2 +- .github/workflows/docker-stable.yml | 6 +++--- .github/workflows/docker.yml | 4 ++-- .github/workflows/git.yml | 4 ++-- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci-batsim.yml b/.github/workflows/ci-batsim.yml index 78ac34738d..f519b1e78b 100644 --- a/.github/workflows/ci-batsim.yml +++ b/.github/workflows/ci-batsim.yml @@ -12,7 +12,7 @@ jobs: container: simgrid/unstable steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Build and test BatSim run: | set -e diff --git a/.github/workflows/ci-bigdft.yml b/.github/workflows/ci-bigdft.yml index 581e733bcc..bb44643ecf 100644 --- a/.github/workflows/ci-bigdft.yml +++ b/.github/workflows/ci-bigdft.yml @@ -14,7 +14,7 @@ jobs: options: --user 0 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Build and test BigDFT run: | set -e diff --git a/.github/workflows/ci-starpu.yml b/.github/workflows/ci-starpu.yml index 6b6323837b..fbca937b27 100644 --- a/.github/workflows/ci-starpu.yml +++ b/.github/workflows/ci-starpu.yml @@ -12,7 +12,7 @@ jobs: container: simgrid/unstable steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Build and test StarPU run: | set -e diff --git a/.github/workflows/ci-wrench.yml b/.github/workflows/ci-wrench.yml index 224b03e4a9..1a580b4a9e 100644 --- a/.github/workflows/ci-wrench.yml +++ b/.github/workflows/ci-wrench.yml @@ -12,7 +12,7 @@ jobs: container: simgrid/unstable steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Build and test WRENCH run: | set -e diff --git a/.github/workflows/docker-stable.yml b/.github/workflows/docker-stable.yml index 68a4ec31f2..c0a0ea890e 100644 --- a/.github/workflows/docker-stable.yml +++ b/.github/workflows/docker-stable.yml @@ -24,7 +24,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 # Login against a Docker registry except on PR # https://github.com/docker/login-action @@ -65,7 +65,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 # Login against a Docker registry except on PR # https://github.com/docker/login-action @@ -104,7 +104,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 # Login against a Docker registry except on PR # https://github.com/docker/login-action diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 17f6084765..5471cea5b6 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -20,7 +20,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 # Login against a Docker registry except on PR # https://github.com/docker/login-action @@ -59,7 +59,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 # Login against a Docker registry except on PR # https://github.com/docker/login-action diff --git a/.github/workflows/git.yml b/.github/workflows/git.yml index 3bb82255c6..6a907d54f0 100644 --- a/.github/workflows/git.yml +++ b/.github/workflows/git.yml @@ -22,7 +22,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Init options run: | echo "CC=${{ matrix.config.cc }}" >> $GITHUB_ENV @@ -68,7 +68,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: build run: | -- 2.20.1