Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/release-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:

- name: Preserve distribution
if: steps.release.outputs.released == 'true'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: pypi-distribution
path: dist/
Expand All @@ -77,7 +77,7 @@ jobs:
id-token: write

steps:
- uses: actions/download-artifact@v5
- uses: actions/download-artifact@v8
with:
name: pypi-distribution
path: dist/
Expand All @@ -102,11 +102,11 @@ jobs:
with:
ref: ${{ needs.release.outputs.commit_sha }}

- uses: docker/setup-buildx-action@v3
- uses: docker/setup-buildx-action@v4

- name: Generate container metadata
id: metadata
uses: docker/metadata-action@v5
uses: docker/metadata-action@v6
with:
images: ghcr.io/${{ github.repository }}
tags: |
Expand All @@ -122,7 +122,7 @@ jobs:
org.opencontainers.image.licenses=MIT

- name: Build stable container
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: .
load: true
Expand Down Expand Up @@ -159,7 +159,7 @@ jobs:
exit 1

- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-to-test-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:

- name: Preserve distribution
if: steps.release.outputs.released == 'true'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: testpypi-distribution
path: dist/
Expand All @@ -84,7 +84,7 @@ jobs:
id-token: write

steps:
- uses: actions/download-artifact@v5
- uses: actions/download-artifact@v8
with:
name: testpypi-distribution
path: dist/
Expand Down