From d83b47041cdeed33ef09740a6e5ed2cef9467f4a Mon Sep 17 00:00:00 2001 From: CGMossa Date: Mon, 13 Nov 2023 01:05:01 +0100 Subject: [PATCH] Bump versions of actions/checkout@v2 and actions/download-artifact@v2 (#203) * Bump versions of actions/checkout@v2 and actions/download-artifact@v2. --- .github/workflows/doc.yml | 2 +- .github/workflows/non-api-call.yml | 2 +- .github/workflows/test.yml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/doc.yml b/.github/workflows/doc.yml index 40016397..d44b72b8 100644 --- a/.github/workflows/doc.yml +++ b/.github/workflows/doc.yml @@ -28,7 +28,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@master with: diff --git a/.github/workflows/non-api-call.yml b/.github/workflows/non-api-call.yml index 42cb8f3c..66639906 100644 --- a/.github/workflows/non-api-call.yml +++ b/.github/workflows/non-api-call.yml @@ -42,7 +42,7 @@ jobs: runs-on: ubuntu-latest if: github.ref == 'refs/heads/master' steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/download-artifact@v3 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 39bbca7f..60ee5b04 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -89,7 +89,7 @@ jobs: steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 # When invoked by an issue comment event, the GitHub Actions runner runs # on the default branch, so we need to switch the branch of the pull @@ -244,9 +244,9 @@ jobs: # cases, we only want to invoke this on the master branch. if: github.event_name == 'issue_comment' || github.ref == 'refs/heads/master' steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - - uses: actions/download-artifact@v2 + - uses: actions/download-artifact@v3 - name: Switch branch if: github.event_name != 'issue_comment'