From defd263836fefcbc08e68d6f01a0019718f1370d Mon Sep 17 00:00:00 2001 From: Gabriele Bozzola Date: Sun, 16 Jun 2024 16:57:48 -0700 Subject: [PATCH] Maintenance: Update GitHub actions --- .github/workflows/document.yml | 6 +++--- .github/workflows/lint.yml | 4 ++-- .github/workflows/publish.yml | 6 +++--- .github/workflows/test.yml | 6 +++--- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/document.yml b/.github/workflows/document.yml index c7267a20..22ce3452 100644 --- a/.github/workflows/document.yml +++ b/.github/workflows/document.yml @@ -9,12 +9,12 @@ jobs: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 1 - name: Set up Python 3.11 - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: 3.11 @@ -25,7 +25,7 @@ jobs: virtualenvs-in-project: true - name: Load cached Poetry virtualenv - uses: actions/cache@v3 + uses: actions/cache@v4 id: cached-poetry-dependencies with: path: .venv diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 2c08b8a1..0179456c 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -11,12 +11,12 @@ jobs: python-version: [ '3.8' ] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 1 - name: Set up Python 3.8 - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index cdb078d2..e329eee1 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -9,12 +9,12 @@ jobs: if: startsWith(github.ref, 'refs/tags/') steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 1 - name: Set up Python 3.8 - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: 3.8 @@ -25,7 +25,7 @@ jobs: virtualenvs-in-project: true - name: Load cached Poetry virtualenv - uses: actions/cache@v3 + uses: actions/cache@v4 id: cached-poetry-dependencies with: path: .venv diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1b212f18..e92ac8b3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,12 +11,12 @@ jobs: python-version: [ '3.8', '3.11' ] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 1 - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} @@ -28,7 +28,7 @@ jobs: virtualenvs-in-project: true - name: Load cached Poetry virtualenv - uses: actions/cache@v3 + uses: actions/cache@v4 id: cached-poetry-dependencies with: path: .venv