Skip to content

Commit

Permalink
ci: Update various github action versions (#97)
Browse files Browse the repository at this point in the history
  • Loading branch information
keelerm84 authored Aug 12, 2024
1 parent b042788 commit de3ee23
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/manual-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- uses: ./.github/actions/ci
- uses: ./.github/actions/build-docs

- uses: launchdarkly/gh-actions/actions/release-secrets@release-secrets-v1.0.0
- uses: launchdarkly/gh-actions/actions/release-secrets@release-secrets-v1.2.0
name: 'Get crates.io token'
with:
aws_assume_role: ${{ vars.AWS_ROLE_ARN }}
Expand Down
20 changes: 8 additions & 12 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,38 +13,34 @@ jobs:
contents: write # Contents and pull-requests are for release-please to make releases.
pull-requests: write
steps:
- uses: google-github-actions/release-please-action@v3
- uses: googleapis/release-please-action@v4
id: release
with:
command: manifest
token: ${{secrets.GITHUB_TOKEN}}
default-branch: main

- uses: actions/checkout@v4
if: ${{ steps.release.outputs.releases_created }}
if: ${{ steps.release.outputs['launchdarkly-server-sdk--release_created'] == 'true' }}
with:
fetch-depth: 0 # If you only need the current version keep this.

- name: Setup rust tooling
if: ${{ steps.release.outputs.releases_created }}
if: ${{ steps.release.outputs['launchdarkly-server-sdk--release_created'] == 'true' }}
run: |
rustup override set 1.74
rustup component add rustfmt clippy
- uses: launchdarkly/gh-actions/actions/release-secrets@release-secrets-v1.0.0
- uses: launchdarkly/gh-actions/actions/release-secrets@release-secrets-v1.2.0
name: 'Get crates.io token'
if: ${{ steps.release.outputs.releases_created }}
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'

- uses: ./.github/actions/ci
if: ${{ steps.release.outputs.releases_created }}
if: ${{ steps.release.outputs['launchdarkly-server-sdk--release_created'] == 'true' }}

- uses: ./.github/actions/build-docs
if: ${{ steps.release.outputs.releases_created }}
if: ${{ steps.release.outputs['launchdarkly-server-sdk--release_created'] == 'true' }}

- uses: ./.github/actions/publish
if: ${{ steps.release.outputs.releases_created }}
if: ${{ steps.release.outputs['launchdarkly-server-sdk--release_created'] == 'true' }}
with:
dry_run: false

0 comments on commit de3ee23

Please sign in to comment.