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/test-checkout-rust-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
test-with-default-arguments:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: ./checkout-rust-project
- name: Assert project is checked out
run: grep "# GitHub Actions" README.md
Expand All @@ -15,7 +15,7 @@ jobs:
test-with-clippy-component-installed:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: ./checkout-rust-project
with:
rust-components: clippy
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-determine-binary-name.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
expected-suffix: x86_64-apple-darwin
runs-on: ${{ matrix.os.image }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: ./determine-binary-name
id: run-action
with:
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
expected-suffix: macos
runs-on: ${{ matrix.os.image }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: ./determine-binary-name
id: run-action
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-determine-release-url.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
expected-url: https://github.com/example-org/example-app/releases/latest/download/my-binary-x86_64-apple-darwin
runs-on: ${{ matrix.os.image }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: ./determine-release-url
id: run-action
with:
Expand All @@ -39,7 +39,7 @@ jobs:
expected-url: https://github.com/demo-org/demo-app/releases/latest/download/program-macos
runs-on: ${{ matrix.os.image }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: ./determine-release-url
id: run-action
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-install-release-binary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- macos-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: ./install-release-binary
id: run-action
with:
Expand All @@ -29,7 +29,7 @@ jobs:
- macos-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: ./install-release-binary
id: run-action
with:
Expand Down
Loading