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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
rustup target add aarch64-unknown-linux-musl

- if: runner.os == 'Linux'
uses: taiki-e/install-action@v2.82.2
uses: taiki-e/install-action@v2.82.6
with:
tool: cross

Expand Down Expand Up @@ -179,7 +179,7 @@ jobs:
rustup toolchain install --profile minimal --no-self-update stable
rustup default stable
rustup component add clippy
- uses: taiki-e/install-action@v2.82.2
- uses: taiki-e/install-action@v2.82.6
with:
tool: just
- uses: Swatinem/rust-cache@v2
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release-algae.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,17 +74,17 @@ jobs:
# Release builds run on one-shot tags; don't persist tag-scoped
# caches PRs can't reuse and that crowd out CI's under the 10 GB cap.
save-if: ${{ github.ref == 'refs/heads/main' }}
- uses: taiki-e/install-action@v2.82.2
- uses: taiki-e/install-action@v2.82.6
with:
tool: cargo-auditable

- run: cargo auditable build --profile dist --target ${{ matrix.target }} -p algae-cli

- uses: actions/attest-build-provenance@v4.1.0
- uses: actions/attest-build-provenance@v4.1.1
if: runner.os != 'Windows'
with:
subject-path: target/*/dist/algae
- uses: actions/attest-build-provenance@v4.1.0
- uses: actions/attest-build-provenance@v4.1.1
if: runner.os == 'Windows'
with:
subject-path: target/*/dist/algae.exe
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:
*.deb

- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v6.2.0
uses: aws-actions/configure-aws-credentials@v6.2.1
with:
aws-region: ap-southeast-2
role-to-assume: arn:aws:iam::143295493206:role/gha-tamanu-tools-upload
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release-bestool.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
# Release builds run on one-shot tags; don't persist tag-scoped
# caches PRs can't reuse and that crowd out CI's under the 10 GB cap.
save-if: ${{ github.ref == 'refs/heads/main' }}
- uses: taiki-e/install-action@v2.82.2
- uses: taiki-e/install-action@v2.82.6
with:
tool: cargo-auditable,rsign2

Expand All @@ -88,11 +88,11 @@ jobs:
- if: runner.os != 'Linux'
run: cargo auditable build --profile dist --target ${{ matrix.target }} -p bestool

- uses: actions/attest-build-provenance@v4.1.0
- uses: actions/attest-build-provenance@v4.1.1
if: runner.os != 'Windows'
with:
subject-path: target/*/dist/bestool
- uses: actions/attest-build-provenance@v4.1.0
- uses: actions/attest-build-provenance@v4.1.1
if: runner.os == 'Windows'
with:
subject-path: target/*/dist/bestool.exe
Expand Down Expand Up @@ -267,7 +267,7 @@ jobs:
*.deb

- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v6.2.0
uses: aws-actions/configure-aws-credentials@v6.2.1
with:
aws-region: ap-southeast-2
role-to-assume: arn:aws:iam::143295493206:role/gha-tamanu-tools-upload
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release-psql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
# Release builds run on one-shot tags; don't persist tag-scoped
# caches PRs can't reuse and that crowd out CI's under the 10 GB cap.
save-if: ${{ github.ref == 'refs/heads/main' }}
- uses: taiki-e/install-action@v2.82.2
- uses: taiki-e/install-action@v2.82.6
with:
tool: cargo-auditable

Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
tar -C staging --zstd -cf "${name}.tar.zst" .
echo "asset=${name}.tar.zst" >> "$GITHUB_OUTPUT"

- uses: actions/attest-build-provenance@v4.1.0
- uses: actions/attest-build-provenance@v4.1.1
with:
subject-path: ${{ steps.package.outputs.asset }}

Expand Down Expand Up @@ -149,7 +149,7 @@ jobs:

dpkg-deb --build --root-owner-group "$deb_dir" "bestool-psql-${target}-${version}.deb"

- uses: actions/attest-build-provenance@v4.1.0
- uses: actions/attest-build-provenance@v4.1.1
if: contains(matrix.target, 'linux-musl')
with:
subject-path: "bestool-psql-${{ matrix.target }}-${{ steps.version.outputs.version }}.deb"
Expand All @@ -165,7 +165,7 @@ jobs:

- name: Configure AWS Credentials
if: contains(matrix.target, 'linux-musl')
uses: aws-actions/configure-aws-credentials@v6.2.0
uses: aws-actions/configure-aws-credentials@v6.2.1
with:
aws-region: ap-southeast-2
role-to-assume: arn:aws:iam::143295493206:role/gha-tamanu-tools-upload
Expand Down
Loading