Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ruby3.3-excon/1.2.1 package update #34194

Merged
merged 2 commits into from
Nov 15, 2024
Merged
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: 14 additions & 2 deletions ruby3.3-excon.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Generated from https://github.com/excon/excon
package:
name: ruby3.3-excon
version: 1.2.0
version: 1.2.1
epoch: 0
description: EXtended http(s) CONnections
copyright:
Expand All @@ -21,7 +21,7 @@ pipeline:
- uses: git-checkout
with:
repository: https://github.com/excon/excon
expected-commit: 9d08270f9c96ece456fbde4dd322a0fad51210b8
expected-commit: 239111877ffa6f56ccc6d8f43d0fae2dec17e164
tag: v${{package.version}}

- uses: ruby/build
Expand All @@ -38,6 +38,18 @@ pipeline:
vars:
gem: excon

test:
pipeline:
- runs: ruby -e "require 'excon'"
- name: HTTP GET
runs: |
cat <<EOF > /tmp/test.rb
require 'excon'
response = Excon.get("https://edu.chainguard.dev/open-source/wolfi/overview/")
print response.status
EOF
ruby /tmp/test.rb

update:
enabled: true
github:
Expand Down
Loading