From bcc53906aaffa7ae9e9f6b278a8dfe31ed4d9cb9 Mon Sep 17 00:00:00 2001 From: Felix Seifert Date: Mon, 19 Aug 2024 22:27:53 +0200 Subject: [PATCH 1/2] chore: update action versions to `checkout@v4` and `setup-python@v5` --- .github/workflows/codeql.yml | 2 +- .github/workflows/eslint.yml | 2 +- .github/workflows/linuxci.yml | 4 ++-- .github/workflows/macosci.yml | 4 ++-- .github/workflows/windowsci.yml | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 1d96d60..35dcf49 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -38,7 +38,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/eslint.yml b/.github/workflows/eslint.yml index a47877f..9ad62ff 100644 --- a/.github/workflows/eslint.yml +++ b/.github/workflows/eslint.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest name: Node 20 eslint run steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Setup node uses: actions/setup-node@v3 with: diff --git a/.github/workflows/linuxci.yml b/.github/workflows/linuxci.yml index fe40884..a696ee3 100644 --- a/.github/workflows/linuxci.yml +++ b/.github/workflows/linuxci.yml @@ -15,9 +15,9 @@ jobs: name: Linux CI steps: - name: Check out source repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} environment - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Python environment report diff --git a/.github/workflows/macosci.yml b/.github/workflows/macosci.yml index 0b019c2..a805c22 100644 --- a/.github/workflows/macosci.yml +++ b/.github/workflows/macosci.yml @@ -15,9 +15,9 @@ jobs: name: macOS CI steps: - name: Check out source repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} environment - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Python environment report diff --git a/.github/workflows/windowsci.yml b/.github/workflows/windowsci.yml index 25756e0..7a9cda0 100644 --- a/.github/workflows/windowsci.yml +++ b/.github/workflows/windowsci.yml @@ -15,9 +15,9 @@ jobs: name: Windows CI steps: - name: Check out source repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} environment - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} # - name: Windows-specific Python environment workaround From 7e699c9dbb0ccbe710f84ec56ee4ef88b4a6264b Mon Sep 17 00:00:00 2001 From: Felix Seifert Date: Mon, 19 Aug 2024 22:29:42 +0200 Subject: [PATCH 2/2] chore: update action versions in examples --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 6e9ad34..a538482 100644 --- a/README.md +++ b/README.md @@ -26,9 +26,9 @@ jobs: name: Lint steps: - name: Check out source repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Python environment - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: "3.11" - name: flake8 Lint @@ -48,9 +48,9 @@ jobs: name: Lint steps: - name: Check out source repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Python environment - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: "3.11" - name: flake8 Lint