Skip to content

Commit 409d015

Browse files
chore(deps): update github actions
1 parent 4696457 commit 409d015

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+80
-80
lines changed

.github/workflows/Apply Labels to Pull Request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
pull-requests: write
1414
steps:
1515
- name: Checkout Repository
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717
- name: Apply Labels Based on PR Changes
18-
uses: actions/labeler@v5
18+
uses: actions/labeler@v6
1919
with:
2020
repo-token: ${{ secrets.GITHUB_TOKEN }}
2121
configuration-path: .github/labeler.yml

.github/workflows/Attest-build-provenance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: 📥 Checkout Source Code
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5
1616
- name: 🧾 Generate Provenance Attestation
1717
uses: slsa-framework/slsa-github-generator/actions/provenance@v1
1818
with:

.github/workflows/Auditwheel Compatibility.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
container: quay.io/pypa/manylinux2014_x86_64
99
steps:
10-
- uses: actions/checkout@v4
10+
- uses: actions/checkout@v5
1111
- run: pip install build
1212
- run: python -m build
1313
- run: auditwheel show dist/*.whl

.github/workflows/Auto Rebase Dependabot Pull Requests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Add autorebase label
12-
uses: actions/github-script@v7
12+
uses: actions/github-script@v8
1313
with:
1414
script: |-
1515
github.rest.issues.addLabels({

.github/workflows/Automated Version Bump and Changelog.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout repo
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v5
1515
with:
1616
fetch-depth: 0
1717
- name: Set up Python
18-
uses: actions/setup-python@v5
18+
uses: actions/setup-python@v6
1919
with:
2020
python-version: '3.13'
2121
- name: Install Commitizen

.github/workflows/Build and Push Docker Image.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: 📥 Checkout Repository
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717
- name: 🔧 Set up Docker Buildx
1818
uses: docker/setup-buildx-action@v3
1919
- name: 🔐 Log in to GitHub Container Registry
2020
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }}
2121
--password-stdin
2222
- name: 🐍 Set up Python & Install Commitizen
23-
uses: actions/setup-python@v5
23+
uses: actions/setup-python@v6
2424
with:
2525
python-version: '3.13'
2626
- name: 📦 Install Commitizen
@@ -54,7 +54,7 @@ jobs:
5454
IMAGE_DIGEST=$(syft ghcr.io/${{ github.repository }}:${{ env.VERSION }} -o json | jq -r '.descriptor.digest')
5555
echo "IMAGE_DIGEST=$IMAGE_DIGEST" >> $GITHUB_ENV
5656
- name: 📤 Upload SBOM
57-
uses: actions/upload-artifact@v4
57+
uses: actions/upload-artifact@v5
5858
with:
5959
name: sbom-image
6060
path: sbom.image.json

.github/workflows/Check Outdated Dependencies.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ jobs:
99
permissions:
1010
contents: read
1111
steps:
12-
- uses: actions/checkout@v4
13-
- uses: actions/setup-python@v5
12+
- uses: actions/checkout@v5
13+
- uses: actions/setup-python@v6
1414
with:
1515
python-version: 3.x
1616
- name: Install Pip Tools

.github/workflows/Cleanup Old Docker Images.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5
1616
- name: Extract repository short name
1717
id: extract
1818
run: echo "REPO_NAME=$(basename '${{ github.repository }}')" >> $GITHUB_ENV

.github/workflows/Code Coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ jobs:
88
coverage:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v4
12-
- uses: actions/setup-python@v5
11+
- uses: actions/checkout@v5
12+
- uses: actions/setup-python@v6
1313
with:
1414
python-version: '3.11'
1515
- run: pip install -e .[dev]

.github/workflows/CodeQL Analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ jobs:
1616
matrix:
1717
language: [python]
1818
steps:
19-
- uses: actions/checkout@v4
20-
- uses: github/codeql-action/init@v3
19+
- uses: actions/checkout@v5
20+
- uses: github/codeql-action/init@v4
2121
with:
2222
languages: ${{ matrix.language }}
23-
- uses: github/codeql-action/analyze@v3
23+
- uses: github/codeql-action/analyze@v4

0 commit comments

Comments
 (0)