diff --git a/.github/workflows/bare.yml b/.github/workflows/bare.yml index 8bfb5e5645..58e37b8d89 100644 --- a/.github/workflows/bare.yml +++ b/.github/workflows/bare.yml @@ -16,20 +16,18 @@ jobs: run: | sudo locale-gen nl_NL@euro sudo update-locale - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v3 with: python-version: ${{ matrix.python-version }} + cache: 'pip' - name: "Install Python dependencies (pip)" - uses: "py-actions/py-dependency-install@v2" + uses: "py-actions/py-dependency-install@v3" with: path: "requirements.txt" - update-setuptools: "false" - update-pip: "true" - update-wheel: "true" - name: Cache eggs - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: | eggs diff --git a/.github/workflows/ecosystem.yml b/.github/workflows/ecosystem.yml index 271c8a0448..79400e4c4d 100644 --- a/.github/workflows/ecosystem.yml +++ b/.github/workflows/ecosystem.yml @@ -10,20 +10,18 @@ jobs: - "3.9" runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v3 with: python-version: ${{ matrix.python-version }} + cache: 'pip' - name: "Install Python dependencies (pip)" - uses: "py-actions/py-dependency-install@v2" + uses: "py-actions/py-dependency-install@v3" with: path: "requirements.txt" - update-setuptools: "false" - update-pip: "true" - update-wheel: "true" - name: Cache eggs - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: | eggs diff --git a/.github/workflows/run-buildout.yml b/.github/workflows/run-buildout.yml index e5f6f91983..5c213acfc1 100644 --- a/.github/workflows/run-buildout.yml +++ b/.github/workflows/run-buildout.yml @@ -17,20 +17,18 @@ jobs: runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v3 with: python-version: ${{ matrix.python-version }} + cache: 'pip' - name: "Install Python dependencies (pip)" - uses: "py-actions/py-dependency-install@v2" + uses: "py-actions/py-dependency-install@v3" with: path: "requirements.txt" - update-setuptools: "false" - update-pip: "true" - update-wheel: "true" - name: Cache eggs - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: | eggs diff --git a/.github/workflows/versioncheck.yml b/.github/workflows/versioncheck.yml index b623fe112a..29d290eea7 100644 --- a/.github/workflows/versioncheck.yml +++ b/.github/workflows/versioncheck.yml @@ -13,22 +13,20 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: ref: ${{ matrix.branch }} - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v3 with: python-version: ${{ matrix.python-version }} + cache: 'pip' - name: "Install Python dependencies (pip)" - uses: "py-actions/py-dependency-install@v2" + uses: "py-actions/py-dependency-install@v3" with: path: "requirements.txt" - update-setuptools: "false" - update-pip: "true" - update-wheel: "true" - name: Cache eggs - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: | eggs