-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #256 from artichoke/lopopolo/deps
Deps rollup
- Loading branch information
Showing
12 changed files
with
97 additions
and
97 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ jobs: | |
uses: actions/[email protected] | ||
|
||
- name: Install Ruby toolchain | ||
uses: ruby/setup-ruby@1d0e911f615a112e322369596f10ee0b95b010ae # v1.183.0 | ||
uses: ruby/setup-ruby@a6e6f86333f0a2523ece813039b8b4be04560854 # v1.190.0 | ||
with: | ||
ruby-version: ".ruby-version" | ||
bundler-cache: true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ jobs: | |
uses: actions/[email protected] | ||
|
||
- name: Setup Python | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
python-version-file: ".python-version" | ||
|
||
|
@@ -61,7 +61,7 @@ jobs: | |
|
||
- name: GPG sign binary | ||
id: gpg_signing | ||
run: venv/bin/python3 gpg_sign.py "nightly-gpg-sign-test" --artifact artichoke/target/release/artichoke | ||
run: venv/bin/python3 src/gpg_sign.py "nightly-gpg-sign-test" --artifact artichoke/target/release/artichoke | ||
|
||
- name: Verify GPG signature | ||
run: gpg --batch --verify "${{ steps.gpg_signing.outputs.signature }}" artichoke/target/release/artichoke | ||
|
@@ -74,7 +74,7 @@ jobs: | |
uses: actions/[email protected] | ||
|
||
- name: Setup Python | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
python-version-file: ".python-version" | ||
|
||
|
@@ -100,7 +100,7 @@ jobs: | |
id: apple_codesigning | ||
if: runner.os == 'macOS' | ||
run: | | ||
venv/bin/python3 macos_sign_and_notarize.py "nightly-apple-codesign-test" \ | ||
venv/bin/python3 src/macos_sign_and_notarize.py "nightly-apple-codesign-test" \ | ||
--binary "artichoke/target/release/artichoke" \ | ||
--binary "artichoke/target/release/airb" \ | ||
--resource artichoke/LICENSE \ | ||
|
@@ -127,7 +127,7 @@ jobs: | |
uses: actions/[email protected] | ||
|
||
- name: Setup Python | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
python-version-file: ".python-version" | ||
|
||
|
@@ -154,7 +154,7 @@ jobs: | |
uses: actions/[email protected] | ||
|
||
- name: Install Ruby toolchain | ||
uses: ruby/setup-ruby@1d0e911f615a112e322369596f10ee0b95b010ae # v1.183.0 | ||
uses: ruby/setup-ruby@a6e6f86333f0a2523ece813039b8b4be04560854 # v1.190.0 | ||
with: | ||
ruby-version: ".ruby-version" | ||
bundler-cache: true | ||
|
@@ -170,7 +170,7 @@ jobs: | |
uses: actions/[email protected] | ||
|
||
- name: Setup Node.js runtime | ||
uses: actions/[email protected].2 | ||
uses: actions/[email protected].3 | ||
with: | ||
node-version: "lts/*" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -80,7 +80,7 @@ jobs: | |
run: echo "${{ steps.release_version.outputs.tag }}" > artifacts/release-version | ||
|
||
- name: Upload artifacts | ||
uses: actions/[email protected].3 | ||
uses: actions/[email protected].4 | ||
with: | ||
name: artifacts | ||
path: artifacts | ||
|
@@ -127,7 +127,7 @@ jobs: | |
uses: actions/[email protected] | ||
|
||
- name: Get release download URL | ||
uses: actions/[email protected].7 | ||
uses: actions/[email protected].8 | ||
with: | ||
name: artifacts | ||
path: artifacts | ||
|
@@ -149,7 +149,7 @@ jobs: | |
echo "commit=${release_commit}" >> $GITHUB_OUTPUT | ||
- name: Generate THIRDPARTY license listing | ||
uses: artichoke/generate_third_party@v1.13.0 | ||
uses: artichoke/generate_third_party@v1.14.0 | ||
with: | ||
artichoke_ref: ${{ steps.release_info.outputs.commit }} | ||
target_triple: ${{ matrix.target }} | ||
|
@@ -169,7 +169,7 @@ jobs: | |
fetch-depth: 0 | ||
|
||
- name: Setup Python | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
python-version-file: ".python-version" | ||
|
||
|
@@ -189,13 +189,13 @@ jobs: | |
print(f"version={toolchain}", file=f) | ||
- name: Install Rust toolchain | ||
uses: artichoke/setup-rust/build-and-test@v1.11.0 | ||
uses: artichoke/setup-rust/build-and-test@v1.12.1 | ||
with: | ||
toolchain: ${{ steps.rust_toolchain.outputs.version }} | ||
target: ${{ matrix.target }} | ||
|
||
- name: Setup Python | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
python-version-file: ".python-version" | ||
|
||
|
@@ -253,7 +253,7 @@ jobs: | |
id: apple_codesigning | ||
if: runner.os == 'macOS' | ||
run: | | ||
./venv/bin/python3 macos_sign_and_notarize.py "artichoke-nightly-${{ matrix.target }}" \ | ||
./venv/bin/python3 src/macos_sign_and_notarize.py "artichoke-nightly-${{ matrix.target }}" \ | ||
--binary "artichoke/target/${{ matrix.target }}/release/artichoke" \ | ||
--binary "artichoke/target/${{ matrix.target }}/release/airb" \ | ||
--resource artichoke/LICENSE \ | ||
|
@@ -269,7 +269,7 @@ jobs: | |
id: apple_codesigning_gpg | ||
if: runner.os == 'macOS' | ||
run: | | ||
python3 gpg_sign.py "artichoke-nightly-${{ matrix.target }}" \ | ||
python3 src/gpg_sign.py "artichoke-nightly-${{ matrix.target }}" \ | ||
--artifact "${{ steps.apple_codesigning.outputs.asset }}" | ||
- name: Upload release archive | ||
|
@@ -323,7 +323,7 @@ jobs: | |
- name: GPG sign archive | ||
id: gpg_signing | ||
run: python3 gpg_sign.py "artichoke-nightly-${{ matrix.target }}" --artifact "${{ steps.build.outputs.asset }}" | ||
run: python3 src/gpg_sign.py "artichoke-nightly-${{ matrix.target }}" --artifact "${{ steps.build.outputs.asset }}" | ||
|
||
- name: Upload release archive | ||
uses: ncipollo/release-action@2c591bcc8ecdcd2db72b97d6147f871fcd833ba5 # v1.14.0 | ||
|
@@ -368,7 +368,7 @@ jobs: | |
uses: actions/[email protected] | ||
|
||
- name: Get release download URL | ||
uses: actions/[email protected].7 | ||
uses: actions/[email protected].8 | ||
with: | ||
name: artifacts | ||
path: artifacts | ||
|
@@ -397,7 +397,7 @@ jobs: | |
ref: ${{ steps.release_info.outputs.commit }} | ||
|
||
- name: Setup Python | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
python-version-file: ".python-version" | ||
|
||
|
@@ -451,7 +451,7 @@ jobs: | |
- name: GPG sign archive | ||
id: gpg_signing | ||
run: python3 gpg_sign.py "artichoke-nightly-${{ matrix.archive }}" --artifact "${{ steps.build.outputs.asset }}" | ||
run: python3 src/gpg_sign.py "artichoke-nightly-${{ matrix.archive }}" --artifact "${{ steps.build.outputs.asset }}" | ||
|
||
- name: Upload release archive | ||
uses: ncipollo/release-action@2c591bcc8ecdcd2db72b97d6147f871fcd833ba5 # v1.14.0 | ||
|
@@ -485,7 +485,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Get release download URL | ||
uses: actions/[email protected].7 | ||
uses: actions/[email protected].8 | ||
with: | ||
name: artifacts | ||
path: artifacts | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.