Skip to content
Open
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
16 changes: 8 additions & 8 deletions .github/workflows/build-dockerfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
run: pip install -r requirements.txt

- name: Restore test dataset
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
key: ${{ needs.cache-test-datasets.outputs.cache-key }}
path: test/data/
Expand Down Expand Up @@ -132,20 +132,20 @@ jobs:

- name: Login to DockerHub
if: github.event_name != 'pull_request'
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Login to GitHub Container Registry
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # 3.11.1
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # 3.12.0
with:
platforms: linux/amd64,linux/arm64

Expand All @@ -157,7 +157,7 @@ jobs:

- name: Build Docker image (x86)
if: github.event_name != 'pull_request'
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0
uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6.19.2
with:
context: ${{ github.workspace }}
load: true
Expand All @@ -175,7 +175,7 @@ jobs:

- name: Build Docker image (x86; PR)
if: github.event_name == 'pull_request'
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0
uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6.19.2
with:
context: ${{ github.workspace }}
load: true
Expand All @@ -197,7 +197,7 @@ jobs:

- name: Build Docker image (arm64)
if: github.event_name != 'pull_request'
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0
uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6.19.2
with:
context: ${{ github.workspace }}
push: false
Expand All @@ -214,7 +214,7 @@ jobs:

- name: Push image to registries
if: github.event_name != 'pull_request'
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0
uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6.19.2
with:
context: ${{ github.workspace }}
push: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
run: python -m build . -v --outdir out/dist/

- name: Upload distribution
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: dist
path: out/
Expand All @@ -88,7 +88,7 @@ jobs:

steps:
- name: Download artifacts
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: dist

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cache-test-datasets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:

- name: Restore cache
id: cache-dset
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
key: ${{ steps.generate-cache-key.outputs.key }}
path: test/data/
Expand All @@ -93,7 +93,7 @@ jobs:
run: md5sum -c checksums.md5

- name: Save cache
uses: actions/cache/save@v4
uses: actions/cache/save@v5
if: steps.cache-dset.outputs.cache-hit != 'true'
with:
key: ${{ steps.generate-cache-key.outputs.key }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ jobs:
stripepy --version

- name: Restore test dataset
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
key: ${{ needs.cache-test-datasets.outputs.cache-key }}
path: test/data/
Expand All @@ -132,7 +132,7 @@ jobs:

- name: Upload unit test coverage report to Codecov
if: (! matrix.minimal_install)
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2
with:
flags: "tests | unit | python-${{ matrix.python_version }}"
disable_search: true
Expand All @@ -143,7 +143,7 @@ jobs:

- name: Upload unit test coverage report to Codecov (core)
if: matrix.minimal_install
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2
with:
flags: "tests | unit | python-${{ matrix.python_version }} | core"
disable_search: true
Expand All @@ -164,7 +164,7 @@ jobs:

- name: Upload end2end test coverage report to Codecov
if: (! matrix.minimal_install)
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2
with:
flags: "tests | integration | python-${{ matrix.python_version }}"
disable_search: true
Expand All @@ -175,7 +175,7 @@ jobs:

- name: Upload end2end test coverage report to Codecov (core)
if: matrix.minimal_install
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2
with:
flags: "tests | integration | python-${{ matrix.python_version }} | core"
disable_search: true
Expand Down
Loading