diff --git a/.github/workflows/mirror.yml b/.github/workflows/mirror.yml index a5937d73144f29ff4afbe66711132e93c003ae52..97aece1c4637d99f84aceff7484f8dbdbc742f4c 100644 --- a/.github/workflows/mirror.yml +++ b/.github/workflows/mirror.yml @@ -23,7 +23,7 @@ jobs: steps: # Checks out a copy of your repository on the virtual machine - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: # Avoid a shallow clone fetch-depth: "0" diff --git a/.github/workflows/preview.yml b/.github/workflows/preview.yml index b3c69c63cb90e19901c9ae4eb1e4135328974550..73e51dfe16a42c56cfd694f66841e151efe9fbed 100644 --- a/.github/workflows/preview.yml +++ b/.github/workflows/preview.yml @@ -63,7 +63,7 @@ jobs: # anyway. repository: ARM-software/lisa - - uses: actions/setup-python@v2 + - uses: actions/setup-python@v4 with: python-version: "3.11" diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 668a7375d432da94db32cd3b5946b9b852be9d89..9612016a27b2c5e90f42cfdd3b29d68c0b38be4c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -50,7 +50,7 @@ jobs: steps: # Checks out a copy of your repository on the virtual machine - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: # Avoid a shallow clone, which breaks the check on external/ # modification and and provides inaccurate doc @@ -58,7 +58,7 @@ jobs: ref: ${{ github.event.inputs.ref || github.sha }} # Install the python version specified in the matrix - - uses: actions/setup-python@v2 + - uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }}