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
2 changes: 1 addition & 1 deletion .github/workflows/cd-registry-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
timeout-minutes: 60
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- if: runner.os == 'Linux'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pg-atlas-sbom.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ jobs:
id-token: write
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Fetch and submit SBOM
uses: SCF-Public-Goods-Maintenance/pg-atlas-sbom-action@main
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.APP_PRIVATE_KEY }}
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
token: ${{ steps.generate-token.outputs.token }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- run: rustup update
- run: rustup target add wasm32v1-none
- run: rustup component add rustfmt clippy
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
CI_CACHE: "/tmp/.cache"
CI_BUILD: "--locked"
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Install system dependencies
run: |
sudo apt-get update
Expand All @@ -42,7 +42,7 @@ jobs:
# the hello_v1/v2 fixtures are local (crates/stellar-registry-test/
# fixtures/contracts) and build with the CLI. Assemble both into the dir.
- name: Checkout stellar-registry/contracts
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: stellar-registry/contracts
path: _contracts
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
STELLAR_ACCOUNT: default
STELLAR_CONTRACT_ID: core
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: taiki-e/install-action@just
- uses: taiki-e/install-action@nextest
- uses: stellar/stellar-cli@v27.0.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-registry-intake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
echo "template=$TEMPLATE" >> "$GITHUB_OUTPUT"

- name: Checkout repo (for validator scripts and form templates)
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Parse intake form
id: parse
Expand Down
Loading