Skip to content

Commit

Permalink
Bump CICD actions/upload-artifact (#184)
Browse files Browse the repository at this point in the history
  • Loading branch information
mtralka authored Nov 21, 2024
1 parent 21c562e commit 0837606
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci-ffi-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Build in Docker
run: make wheel/linux/amd64

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: "linux.whl"
path: pyroscope_ffi/python/dist/*
Expand All @@ -25,7 +25,7 @@ jobs:
strategy:
fail-fast: false
matrix:
PYTHON_VERSION: [ '3.7', '3.8', '3.9', '3.10', '3.11' ]
PYTHON_VERSION: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
needs: [ 'linux-build' ]
name: Linux Test
runs-on: ubuntu-latest
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
- name: Build in Docker
run: make wheel/linux/arm64

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: "linux-arm.whl"
path: pyroscope_ffi/python/dist/*
Expand All @@ -81,7 +81,7 @@ jobs:
run: python setup.py sdist
working-directory: pyroscope_ffi/python

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: "sdist.whl"
path: pyroscope_ffi/python/dist/*
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
python-version: 3.11

- run: make wheel/mac/${{ matrix.mk-arch }}
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: ${{ github.sha }}
path: pyroscope_ffi/python/dist/*
4 changes: 2 additions & 2 deletions .github/workflows/ci-ffi-ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: AutoModality/action-clean@v1
- uses: actions/checkout@v3
- run: make gem/linux/amd64
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: "linux.gem"
path: pyroscope_ffi/ruby/pkg/*.gem
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
profile: minimal
override: true
- run: make gem/mac/${{ matrix.mk-arch }}
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: ${{ github.sha }}
path: pyroscope_ffi/ruby/pkg/*.gem
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ jobs:
- uses: AutoModality/action-clean@v1
- uses: actions/checkout@v3
- run: make wheel/linux/amd64
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: ${{ github.sha }}
path: pyroscope_ffi/python/dist/*
Expand All @@ -151,7 +151,7 @@ jobs:
- uses: AutoModality/action-clean@v1
- uses: actions/checkout@v3
- run: make wheel/linux/arm64
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: ${{ github.sha }}
path: pyroscope_ffi/python/dist/*
Expand Down Expand Up @@ -197,7 +197,7 @@ jobs:

- run: make pyroscope_ffi/clean wheel/mac/${{ matrix.mk-arch }}

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: ${{ github.sha }}
path: pyroscope_ffi/python/dist/*
Expand Down Expand Up @@ -228,7 +228,7 @@ jobs:
run: python setup.py sdist
working-directory: pyroscope_ffi/python

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: ${{ github.sha }}
path: pyroscope_ffi/python/dist/*
Expand Down Expand Up @@ -264,7 +264,7 @@ jobs:
- uses: AutoModality/action-clean@v1
- uses: actions/checkout@v3
- run: make gem/linux/amd64
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: ${{ github.sha }}
path: pyroscope_ffi/ruby/pkg/*.gem
Expand All @@ -285,7 +285,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- run: make gem/linux/arm64
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: ${{ github.sha }}
path: pyroscope_ffi/ruby/pkg/*.gem
Expand Down Expand Up @@ -328,7 +328,7 @@ jobs:

- run: make pyroscope_ffi/clean gem/mac/${{ matrix.mk-arch }}

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: ${{ github.sha }}
path: pyroscope_ffi/ruby/pkg/*.gem
Expand Down Expand Up @@ -362,7 +362,7 @@ jobs:
run: rake source:gem
working-directory: pyroscope_ffi/ruby

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: ${{ github.sha }}
path: pyroscope_ffi/ruby/pkg/*.gem
Expand Down

0 comments on commit 0837606

Please sign in to comment.