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
4 changes: 2 additions & 2 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
actionlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: stellar/binaries@v30
- uses: actions/checkout@v7
- uses: stellar/binaries@v85
with:
name: actionlint
version: 1.7.1
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/rust-bump-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
bump-version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: stellar/actions/rust-cache@main
- run: rustup update
- uses: stellar/binaries@v21
- uses: stellar/binaries@v85
with:
name: cargo-edit
version: 0.11.6
Expand All @@ -42,7 +42,7 @@ jobs:
git commit -m 'Bump version to ${{ inputs.version }}'
git push origin 'release/v${{ inputs.version }}'
- name: Create Pull Request
uses: actions/github-script@v6
uses: actions/github-script@v9
id: create-pull-request
with:
script: |
Expand All @@ -57,7 +57,7 @@ jobs:
return response.data.number;
- name: Comment on the Pull Request about Failure
if: steps.set-version.outcome == 'failure'
uses: actions/github-script@v6
uses: actions/github-script@v9
with:
script: |
github.rest.issues.createComment({
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/rust-publish-dry-run-v2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
steps:
- uses: stellar/actions/disk-cleanup@main

- uses: actions/checkout@v4
- uses: actions/checkout@v7

- uses: stellar/actions/rust-cache@main

Expand All @@ -66,12 +66,12 @@ jobs:
brew update && brew install make
echo "$(brew --prefix)/opt/make/libexec/gnubin/" >> "$GITHUB_PATH"

- uses: stellar/binaries@v36
- uses: stellar/binaries@v85
with:
name: cargo-hack
version: 0.6.35

- uses: stellar/binaries@v26
- uses: stellar/binaries@v85
with:
name: cargo-workspaces
version: 0.3.4
Expand All @@ -95,7 +95,7 @@ jobs:
# If a list of crates weren't provided, prepare a list by asking
# cargo-workspaces for the order it would publish the crates in.
- name: Prepare List of Crates Ordered by Publish-Order
uses: actions/github-script@v7
uses: actions/github-script@v9
id: crates
with:
script: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rust-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
- name: Install additional dependencies (Linux)
if: inputs.additional-deb-packages != ''
run: sudo apt-get update && sudo apt-get -y install ${{ inputs.additional-deb-packages }}
- uses: actions/checkout@v3
- uses: actions/checkout@v7
- uses: stellar/actions/rust-cache@main
- run: rustup update
- uses: stellar/binaries@v21
- uses: stellar/binaries@v85
with:
name: cargo-workspaces
version: 0.2.35
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/rust-set-rust-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ jobs:
set-rust-version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v7
- uses: stellar/actions/rust-cache@main
- run: rustup update
- uses: stellar/binaries@v21
- uses: stellar/binaries@v85
with:
name: cargo-set-rust-version
version: 0.5.0
Expand Down Expand Up @@ -42,7 +42,7 @@ jobs:
# If the diff step indicates an update is required, open a PR.
- if: steps.diff.outputs.update == 'true'
name: Create Pull Request
uses: actions/github-script@v6
uses: actions/github-script@v9
with:
script: |
await github.rest.pulls.create({
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/socket-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ jobs:
socket-scan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: "24"
- name: Enable Corepack (yarn/pnpm per repo packageManager)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-readme.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
readme:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v7

# Check if every action (directory) is mentioned in the readme.
- run: |
Expand Down
Loading