diff --git a/.github/workflows/ci_compatible.yml b/.github/workflows/ci_compatible.yml index 4eea6299..2738ded2 100644 --- a/.github/workflows/ci_compatible.yml +++ b/.github/workflows/ci_compatible.yml @@ -27,7 +27,7 @@ jobs: outputs: matrix: ${{ steps.diff-files.outputs.runtimes }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-python@v4 with: python-version: 3.8 @@ -58,7 +58,7 @@ jobs: matrix: ${{ fromJSON(needs.generator.outputs.matrix) }} timeout-minutes: 35 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Testing the project uses: ./.github/actions/pytester @@ -127,7 +127,7 @@ jobs: # always and success is need for running if eventually pytester failed if: always() && needs.collector.result == 'success' steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Download 📥 summary uses: actions/download-artifact@v3 with: @@ -160,7 +160,7 @@ jobs: if: always() && needs.collector.result == 'success' steps: - name: Checkout 🛎️ - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: "archive" fetch-depth: 0 # fetch all history for all branches and tags diff --git a/.github/workflows/ci_schema.yml b/.github/workflows/ci_schema.yml index 57afdb52..27bcc08a 100644 --- a/.github/workflows/ci_schema.yml +++ b/.github/workflows/ci_schema.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-20.04 steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install pkg run: | diff --git a/.github/workflows/ci_test-acts.yml b/.github/workflows/ci_test-acts.yml index 06c8e1ad..da8c1d7f 100644 --- a/.github/workflows/ci_test-acts.yml +++ b/.github/workflows/ci_test-acts.yml @@ -21,7 +21,7 @@ jobs: # Timeout: https://stackoverflow.com/a/59076067/4521646 timeout-minutes: 10 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python }} uses: actions/setup-python@v4 with: diff --git a/.github/workflows/dockers.yml b/.github/workflows/dockers.yml index 73d56296..5512aff9 100644 --- a/.github/workflows/dockers.yml +++ b/.github/workflows/dockers.yml @@ -19,7 +19,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - uses: docker/setup-buildx-action@v3 - name: Login to DockerHub