From 90516b57c744cbba5fc47c7fce6d1f3525640cb4 Mon Sep 17 00:00:00 2001 From: Matt Raible Date: Mon, 10 Nov 2025 11:00:20 -0700 Subject: [PATCH] fix: update actions/setup-python to v6.0.0 Update actions/setup-python action to use the correct commit hash for v6.0.0 release (e797f83bcb11b83ae66e0230d6156d7c80228e7c). The previous hash (0b93645e9fea7318ecaed2b359559ac225c90a20) does not exist in the public repository and prevented workflows from running. --- .github/workflows/main.yml | 2 +- .github/workflows/pylint.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 179e81f..33759b9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -25,7 +25,7 @@ jobs: - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 - name: Setup Python - uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a20 # v6 + uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0 with: python-version: '3.13' cache: 'pip' diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 820ef0b..2f6c445 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -24,7 +24,7 @@ jobs: - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 - name: Set up Python - uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a20 # v6 + uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0 with: python-version: ${{ env.PYTHON_VERSION }} - name: Install global dependencies