diff --git a/.github/workflows/manual-publish.yml b/.github/workflows/manual-publish.yml index 0284c34..e884301 100644 --- a/.github/workflows/manual-publish.yml +++ b/.github/workflows/manual-publish.yml @@ -3,7 +3,7 @@ on: workflow_dispatch: inputs: dry_run: - description: 'Is this a dry run. If so no package will be published.' + description: "Is this a dry run. If so no package will be published." type: boolean required: true @@ -19,17 +19,17 @@ jobs: - name: Setup rust tooling run: | - rustup override set 1.81 + rustup override set 1.82 rustup component add rustfmt clippy - uses: ./.github/actions/ci - uses: ./.github/actions/build-docs - uses: launchdarkly/gh-actions/actions/release-secrets@release-secrets-v1.2.0 - name: 'Get crates.io token' + name: "Get crates.io token" with: aws_assume_role: ${{ vars.AWS_ROLE_ARN }} - ssm_parameter_pairs: '/production/common/releasing/cratesio/api_token = CARGO_REGISTRY_TOKEN' + ssm_parameter_pairs: "/production/common/releasing/cratesio/api_token = CARGO_REGISTRY_TOKEN" - uses: ./.github/actions/publish with: diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index ef7401f..9950aef 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -24,15 +24,15 @@ jobs: - name: Setup rust tooling if: ${{ steps.release.outputs['launchdarkly-server-sdk--release_created'] == 'true' }} run: | - rustup override set 1.81 + rustup override set 1.82 rustup component add rustfmt clippy - uses: launchdarkly/gh-actions/actions/release-secrets@release-secrets-v1.2.0 - name: 'Get crates.io token' + name: "Get crates.io token" if: ${{ steps.release.outputs['launchdarkly-server-sdk--release_created'] == 'true' }} with: aws_assume_role: ${{ vars.AWS_ROLE_ARN }} - ssm_parameter_pairs: '/production/common/releasing/cratesio/api_token = CARGO_REGISTRY_TOKEN' + ssm_parameter_pairs: "/production/common/releasing/cratesio/api_token = CARGO_REGISTRY_TOKEN" - uses: ./.github/actions/ci if: ${{ steps.release.outputs['launchdarkly-server-sdk--release_created'] == 'true' }}