diff --git a/.github/workflows/bump-version-flutter-app.yml b/.github/workflows/bump-version-flutter-app.yml index a3b4c14..729405c 100644 --- a/.github/workflows/bump-version-flutter-app.yml +++ b/.github/workflows/bump-version-flutter-app.yml @@ -56,7 +56,7 @@ jobs: git config user.email "senile-errata@users.noreply.github.com" - name: Set up Flutter - uses: subosito/flutter-action@fd55f4c5af5b953cc57a2be44cb082c8f6635e8e + uses: subosito/flutter-action@1a449444c387b1966244ae4d4f8c696479add0b2 with: channel: stable flutter-version-file: pubspec.yaml diff --git a/.github/workflows/bump-version-flutter-lib.yml b/.github/workflows/bump-version-flutter-lib.yml index e990611..b69c45a 100644 --- a/.github/workflows/bump-version-flutter-lib.yml +++ b/.github/workflows/bump-version-flutter-lib.yml @@ -60,7 +60,7 @@ jobs: git config user.email "senile-errata@users.noreply.github.com" - name: Set up Flutter - uses: subosito/flutter-action@fd55f4c5af5b953cc57a2be44cb082c8f6635e8e + uses: subosito/flutter-action@1a449444c387b1966244ae4d4f8c696479add0b2 with: channel: stable flutter-version-file: pubspec.yaml diff --git a/.github/workflows/bump-version-rust.yml b/.github/workflows/bump-version-rust.yml index 6776542..30ec9ee 100644 --- a/.github/workflows/bump-version-rust.yml +++ b/.github/workflows/bump-version-rust.yml @@ -66,12 +66,12 @@ jobs: rust - name: Install stable Rust toolchain - uses: dtolnay/rust-toolchain@efa25f7f19611383d5b0ccf2d1c8914531636bf9 + uses: dtolnay/rust-toolchain@3c5f7ea28cd621ae0bf5283f0e981fb97b8a7af9 with: toolchain: stable - name: Cache dependencies - uses: Swatinem/rust-cache@779680da715d629ac1d338a641029a2f4372abb5 + uses: Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 with: shared-key: stable-ubuntu-latest timeout-minutes: 5 diff --git a/.github/workflows/check-flutter.yml b/.github/workflows/check-flutter.yml index 4a06998..30929af 100644 --- a/.github/workflows/check-flutter.yml +++ b/.github/workflows/check-flutter.yml @@ -14,7 +14,7 @@ jobs: persist-credentials: false - name: Set up Flutter - uses: subosito/flutter-action@fd55f4c5af5b953cc57a2be44cb082c8f6635e8e + uses: subosito/flutter-action@1a449444c387b1966244ae4d4f8c696479add0b2 with: channel: stable flutter-version-file: pubspec.yaml @@ -36,7 +36,7 @@ jobs: persist-credentials: false - name: Set up Flutter - uses: subosito/flutter-action@fd55f4c5af5b953cc57a2be44cb082c8f6635e8e + uses: subosito/flutter-action@1a449444c387b1966244ae4d4f8c696479add0b2 with: channel: stable flutter-version-file: pubspec.yaml @@ -58,7 +58,7 @@ jobs: persist-credentials: false - name: Set up Flutter - uses: subosito/flutter-action@fd55f4c5af5b953cc57a2be44cb082c8f6635e8e + uses: subosito/flutter-action@1a449444c387b1966244ae4d4f8c696479add0b2 with: channel: stable flutter-version-file: pubspec.yaml diff --git a/.github/workflows/check-github-actions.yml b/.github/workflows/check-github-actions.yml index 939f8ff..14188af 100644 --- a/.github/workflows/check-github-actions.yml +++ b/.github/workflows/check-github-actions.yml @@ -44,7 +44,7 @@ jobs: esac - name: Lint GitHub Actions workflow files - uses: zizmorcore/zizmor-action@0dce2577a4760a2749d8cfb7a84b7d5585ebcb7d # v0.5.0 + uses: zizmorcore/zizmor-action@71321a20a9ded102f6e9ce5718a2fcec2c4f70d8 # v0.5.2 with: advanced-security: false persona: ${{ inputs.zizmor_persona }} diff --git a/.github/workflows/check-rust-beta.yml b/.github/workflows/check-rust-beta.yml index 0d3460d..2562fdf 100644 --- a/.github/workflows/check-rust-beta.yml +++ b/.github/workflows/check-rust-beta.yml @@ -20,7 +20,7 @@ jobs: persist-credentials: false - name: Install beta Rust toolchain - uses: dtolnay/rust-toolchain@efa25f7f19611383d5b0ccf2d1c8914531636bf9 + uses: dtolnay/rust-toolchain@3c5f7ea28cd621ae0bf5283f0e981fb97b8a7af9 with: toolchain: beta diff --git a/.github/workflows/check-rust-miri.yml b/.github/workflows/check-rust-miri.yml index 1703b98..fa21758 100644 --- a/.github/workflows/check-rust-miri.yml +++ b/.github/workflows/check-rust-miri.yml @@ -20,7 +20,7 @@ jobs: persist-credentials: false - name: Install nightly Rust toolchain - uses: dtolnay/rust-toolchain@efa25f7f19611383d5b0ccf2d1c8914531636bf9 + uses: dtolnay/rust-toolchain@3c5f7ea28cd621ae0bf5283f0e981fb97b8a7af9 with: toolchain: nightly components: miri diff --git a/.github/workflows/check-rust.yml b/.github/workflows/check-rust.yml index e5b52f1..febfc85 100644 --- a/.github/workflows/check-rust.yml +++ b/.github/workflows/check-rust.yml @@ -20,7 +20,7 @@ jobs: persist-credentials: false - name: Install nightly Rust toolchain - uses: dtolnay/rust-toolchain@efa25f7f19611383d5b0ccf2d1c8914531636bf9 + uses: dtolnay/rust-toolchain@3c5f7ea28cd621ae0bf5283f0e981fb97b8a7af9 with: toolchain: nightly components: rustfmt @@ -38,13 +38,13 @@ jobs: persist-credentials: false - name: Install stable Rust toolchain - uses: dtolnay/rust-toolchain@efa25f7f19611383d5b0ccf2d1c8914531636bf9 + uses: dtolnay/rust-toolchain@3c5f7ea28cd621ae0bf5283f0e981fb97b8a7af9 with: toolchain: stable components: clippy - name: Cache dependencies - uses: Swatinem/rust-cache@779680da715d629ac1d338a641029a2f4372abb5 + uses: Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 with: shared-key: stable-ubuntu-latest timeout-minutes: 5 @@ -75,12 +75,12 @@ jobs: persist-credentials: false - name: Install stable Rust toolchain - uses: dtolnay/rust-toolchain@efa25f7f19611383d5b0ccf2d1c8914531636bf9 + uses: dtolnay/rust-toolchain@3c5f7ea28cd621ae0bf5283f0e981fb97b8a7af9 with: toolchain: stable - name: Cache dependencies - uses: Swatinem/rust-cache@779680da715d629ac1d338a641029a2f4372abb5 + uses: Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 with: shared-key: stable-${{ matrix.platform }} timeout-minutes: 5 @@ -116,12 +116,12 @@ jobs: run: awk -F '"' '/rust-version/{ print "version=" $2 }' Cargo.toml >>"$GITHUB_OUTPUT" - name: Install ${{ steps.msrv.outputs.version }} Rust toolchain - uses: dtolnay/rust-toolchain@efa25f7f19611383d5b0ccf2d1c8914531636bf9 + uses: dtolnay/rust-toolchain@3c5f7ea28cd621ae0bf5283f0e981fb97b8a7af9 with: toolchain: ${{ steps.msrv.outputs.version }} - name: Install nightly Rust toolchain - uses: dtolnay/rust-toolchain@efa25f7f19611383d5b0ccf2d1c8914531636bf9 + uses: dtolnay/rust-toolchain@3c5f7ea28cd621ae0bf5283f0e981fb97b8a7af9 with: toolchain: nightly @@ -134,7 +134,7 @@ jobs: run: rustup override set "${STEPS_MSRV_OUTPUTS_VERSION}" - name: Cache dependencies - uses: Swatinem/rust-cache@779680da715d629ac1d338a641029a2f4372abb5 + uses: Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 with: shared-key: msrv-ubuntu-latest timeout-minutes: 5 diff --git a/.github/workflows/deploy-github-pages-rust.yml b/.github/workflows/deploy-github-pages-rust.yml index 91e67e4..7984038 100644 --- a/.github/workflows/deploy-github-pages-rust.yml +++ b/.github/workflows/deploy-github-pages-rust.yml @@ -20,7 +20,7 @@ jobs: persist-credentials: false - name: Install nightly Rust toolchain - uses: dtolnay/rust-toolchain@efa25f7f19611383d5b0ccf2d1c8914531636bf9 + uses: dtolnay/rust-toolchain@3c5f7ea28cd621ae0bf5283f0e981fb97b8a7af9 with: toolchain: nightly @@ -52,4 +52,4 @@ jobs: steps: - id: deployment name: Deploy to GitHub Pages - uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e + uses: actions/deploy-pages@cd2ce8fcbc39b97be8ca5fce6e763baed58fa128 diff --git a/.github/workflows/deploy-github-pages-zig.yml b/.github/workflows/deploy-github-pages-zig.yml index 1fd5eca..042c5a9 100644 --- a/.github/workflows/deploy-github-pages-zig.yml +++ b/.github/workflows/deploy-github-pages-zig.yml @@ -39,4 +39,4 @@ jobs: steps: - id: deployment name: Deploy to GitHub Pages - uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e + uses: actions/deploy-pages@cd2ce8fcbc39b97be8ca5fce6e763baed58fa128 diff --git a/.github/workflows/detect-changed-files.yml b/.github/workflows/detect-changed-files.yml index 6e66ad2..0f55067 100644 --- a/.github/workflows/detect-changed-files.yml +++ b/.github/workflows/detect-changed-files.yml @@ -55,7 +55,7 @@ jobs: persist-credentials: false - name: Filter changed repository files - uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 + uses: dorny/paths-filter@fbd0ab8f3e69293af611ebaee6363fc25e6d187d id: filter with: list-files: shell diff --git a/.github/workflows/draft-release-flutter.yml b/.github/workflows/draft-release-flutter.yml index 8422fd1..6b194a2 100644 --- a/.github/workflows/draft-release-flutter.yml +++ b/.github/workflows/draft-release-flutter.yml @@ -90,7 +90,7 @@ jobs: - id: gh_release name: Create a new GitHub draft release - uses: softprops/action-gh-release@a06a81a03ee405af7f2048a818ed3f03bbf83c7b + uses: softprops/action-gh-release@153bb8e04406b158c6c84fc1615b65b24149a1fe if: github.ref_type == 'tag' with: draft: true @@ -122,7 +122,7 @@ jobs: flutter - name: Set up Flutter - uses: subosito/flutter-action@fd55f4c5af5b953cc57a2be44cb082c8f6635e8e + uses: subosito/flutter-action@1a449444c387b1966244ae4d4f8c696479add0b2 with: channel: stable flutter-version-file: pubspec.yaml @@ -238,7 +238,7 @@ jobs: flutter - name: Set up Flutter - uses: subosito/flutter-action@fd55f4c5af5b953cc57a2be44cb082c8f6635e8e + uses: subosito/flutter-action@1a449444c387b1966244ae4d4f8c696479add0b2 with: channel: stable flutter-version-file: pubspec.yaml @@ -318,14 +318,14 @@ jobs: persist-credentials: false - name: Download staged Android artifacts - uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 + uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c with: name: release-dist-android path: dist - name: Download staged iOS artifacts if: ${{ inputs.build_ios_ipa }} - uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 + uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c with: name: release-dist-ios path: dist diff --git a/.github/workflows/draft-release-rust.yml b/.github/workflows/draft-release-rust.yml index e6d3ab1..b61544c 100644 --- a/.github/workflows/draft-release-rust.yml +++ b/.github/workflows/draft-release-rust.yml @@ -32,7 +32,7 @@ jobs: - id: gh_release name: Create a new GitHub draft release - uses: softprops/action-gh-release@a06a81a03ee405af7f2048a818ed3f03bbf83c7b + uses: softprops/action-gh-release@153bb8e04406b158c6c84fc1615b65b24149a1fe with: draft: true generate_release_notes: true @@ -86,13 +86,13 @@ jobs: run: sudo apt-get install -y musl-tools - name: Install stable Rust toolchain - uses: dtolnay/rust-toolchain@efa25f7f19611383d5b0ccf2d1c8914531636bf9 + uses: dtolnay/rust-toolchain@3c5f7ea28cd621ae0bf5283f0e981fb97b8a7af9 with: toolchain: stable targets: ${{ matrix.target }} - name: Cache dependencies - uses: Swatinem/rust-cache@779680da715d629ac1d338a641029a2f4372abb5 + uses: Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 with: shared-key: stable-ubuntu-latest timeout-minutes: 5 diff --git a/.github/workflows/preload-caches-flutter.yml b/.github/workflows/preload-caches-flutter.yml index 2b62144..6ea1f75 100644 --- a/.github/workflows/preload-caches-flutter.yml +++ b/.github/workflows/preload-caches-flutter.yml @@ -20,7 +20,7 @@ jobs: persist-credentials: false - name: Set up Flutter - uses: subosito/flutter-action@fd55f4c5af5b953cc57a2be44cb082c8f6635e8e + uses: subosito/flutter-action@1a449444c387b1966244ae4d4f8c696479add0b2 with: channel: stable flutter-version-file: pubspec.yaml diff --git a/.github/workflows/preload-caches-rust.yml b/.github/workflows/preload-caches-rust.yml index 47df5b4..5b68d46 100644 --- a/.github/workflows/preload-caches-rust.yml +++ b/.github/workflows/preload-caches-rust.yml @@ -30,12 +30,12 @@ jobs: persist-credentials: false - name: Install stable Rust toolchain - uses: dtolnay/rust-toolchain@efa25f7f19611383d5b0ccf2d1c8914531636bf9 + uses: dtolnay/rust-toolchain@3c5f7ea28cd621ae0bf5283f0e981fb97b8a7af9 with: toolchain: stable - name: Cache dependencies - uses: Swatinem/rust-cache@779680da715d629ac1d338a641029a2f4372abb5 + uses: Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 with: shared-key: stable-${{ matrix.platform }} timeout-minutes: 5 @@ -63,12 +63,12 @@ jobs: run: awk -F '"' '/rust-version/{ print "version=" $2 }' Cargo.toml >> "$GITHUB_OUTPUT" - name: Install ${{ steps.msrv.outputs.version }} Rust toolchain - uses: dtolnay/rust-toolchain@efa25f7f19611383d5b0ccf2d1c8914531636bf9 + uses: dtolnay/rust-toolchain@3c5f7ea28cd621ae0bf5283f0e981fb97b8a7af9 with: toolchain: ${{ steps.msrv.outputs.version }} - name: Install nightly Rust toolchain - uses: dtolnay/rust-toolchain@efa25f7f19611383d5b0ccf2d1c8914531636bf9 + uses: dtolnay/rust-toolchain@3c5f7ea28cd621ae0bf5283f0e981fb97b8a7af9 with: toolchain: nightly @@ -81,7 +81,7 @@ jobs: run: rustup override set "${STEPS_MSRV_OUTPUTS_VERSION}" - name: Cache dependencies - uses: Swatinem/rust-cache@779680da715d629ac1d338a641029a2f4372abb5 + uses: Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 with: shared-key: msrv-ubuntu-latest timeout-minutes: 5 diff --git a/.github/workflows/publish-crate.yml b/.github/workflows/publish-crate.yml index b5cfa87..7912e2b 100644 --- a/.github/workflows/publish-crate.yml +++ b/.github/workflows/publish-crate.yml @@ -25,19 +25,19 @@ jobs: persist-credentials: false - name: Install stable Rust toolchain - uses: dtolnay/rust-toolchain@efa25f7f19611383d5b0ccf2d1c8914531636bf9 + uses: dtolnay/rust-toolchain@3c5f7ea28cd621ae0bf5283f0e981fb97b8a7af9 with: toolchain: stable - name: Cache dependencies - uses: Swatinem/rust-cache@779680da715d629ac1d338a641029a2f4372abb5 + uses: Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 with: shared-key: stable-ubuntu-latest timeout-minutes: 5 - id: crates_io_auth name: Authenticate with crates.io - uses: rust-lang/crates-io-auth-action@b7e9a28eded4986ec6b1fa40eeee8f8f165559ec + uses: rust-lang/crates-io-auth-action@bbd81622f20ce9e2dd9622e3218b975523e45bbe - name: Publish crate to crates.io env: diff --git a/.github/workflows/tag-untagged-releases-rust.yml b/.github/workflows/tag-untagged-releases-rust.yml index 17d5c32..26da6fa 100644 --- a/.github/workflows/tag-untagged-releases-rust.yml +++ b/.github/workflows/tag-untagged-releases-rust.yml @@ -42,12 +42,12 @@ jobs: git config user.email "senile-errata@users.noreply.github.com" - name: Install stable Rust toolchain - uses: dtolnay/rust-toolchain@efa25f7f19611383d5b0ccf2d1c8914531636bf9 + uses: dtolnay/rust-toolchain@3c5f7ea28cd621ae0bf5283f0e981fb97b8a7af9 with: toolchain: stable - name: Cache dependencies - uses: Swatinem/rust-cache@779680da715d629ac1d338a641029a2f4372abb5 + uses: Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 with: shared-key: stable-ubuntu-latest timeout-minutes: 5