Skip to content

Commit

Permalink
Bump actions/download-artifact from 2 to 4 in /.github/workflows (#64)
Browse files Browse the repository at this point in the history
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Michael Graeb <graebm@amazon.com>
  • Loading branch information
dependabot[bot] and graebm authored Sep 4, 2024
1 parent 487ad01 commit 766e41f
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 18 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
docker cp `docker ps -alq`:/root/aws-crt-ruby/gems/aws-crt .
- name: Upload artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: out_${{ matrix.os }}_${{ matrix.arch }}
path: |
Expand All @@ -68,7 +68,7 @@ jobs:
python builder.pyz build -p ${{ env.PACKAGE_NAME }}
- name: Upload artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: out_${{ matrix.os }}_${{ matrix.arch }}
path: |
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
bundle exec rake "gem:aws-crt:platform[${{ matrix.arch }}]"
- name: Upload artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: out_${{ matrix.os }}_${{ matrix.arch }}
path: |
Expand All @@ -117,27 +117,27 @@ jobs:
submodules: recursive

- name: Download Windows
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: out_windows_x64

- name: Download OSX x64
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: out_macos_x86_64

- name: Download OSX arm64
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: out_macos_arm64

- name: Download Linux x64
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: out_linux_x64

- name: Download Linux ARM 64
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: out_linux_aarch64

Expand All @@ -147,7 +147,7 @@ jobs:
bundle exec rake package-all
- name: Upload release
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: release_gems
path: pkg/
Expand All @@ -163,7 +163,7 @@ jobs:
- uses: actions/checkout@v2

- name: Download Release Artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: release_gems

Expand All @@ -183,7 +183,7 @@ jobs:
- uses: actions/checkout@v2

- name: Download Release Artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: release_gems

Expand All @@ -203,7 +203,7 @@ jobs:
- uses: actions/checkout@v2

- name: Download Release Artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: release_gems

Expand All @@ -222,7 +222,7 @@ jobs:
- uses: actions/checkout@v2

- name: Download Release Artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: release_gems

Expand All @@ -243,7 +243,7 @@ jobs:
- uses: actions/checkout@v2

- name: Download Release Artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: release_gems

Expand Down
2 changes: 1 addition & 1 deletion docker-images/manylinux2014-aarch64-ruby/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# See: https://github.com/pypa/manylinux
# and: https://github.com/pypa/python-manylinux-demo
FROM quay.io/pypa/manylinux2014_aarch64:2021-08-01-5f32364
FROM quay.io/pypa/manylinux2014_aarch64:2024-09-01-3e7a3c3

###############################################################################
# Basics
Expand Down
2 changes: 1 addition & 1 deletion docker-images/manylinux2014-i686-ruby/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# See: https://github.com/pypa/manylinux
# and: https://github.com/pypa/python-manylinux-demo
FROM quay.io/pypa/manylinux2014_i686
FROM quay.io/pypa/manylinux2014_i686:2024-09-01-3e7a3c3

###############################################################################
# Basics
Expand Down
4 changes: 2 additions & 2 deletions docker-images/manylinux2014-x64-ruby/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# See: https://github.com/pypa/manylinux
# and: https://github.com/pypa/python-manylinux-demo
FROM quay.io/pypa/manylinux2014_x86_64:2021-08-01-5f32364
FROM quay.io/pypa/manylinux2014_x86_64:2024-09-01-3e7a3c3

###############################################################################
# Basics
Expand Down Expand Up @@ -50,4 +50,4 @@ RUN yum -y install devtoolset-7 llvm-toolset-7 centos-release-scl clang \
###############################################################################
ADD entrypoint.sh /usr/local/bin/builder
RUN chmod a+x /usr/local/bin/builder
ENTRYPOINT ["/usr/local/bin/builder"]
ENTRYPOINT ["/usr/local/bin/builder"]

0 comments on commit 766e41f

Please sign in to comment.