Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: bump rbac to fix import issue #3128

Merged
merged 2 commits into from
Dec 11, 2023
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/api-deploy-production-ecs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
flagsmith_saml_revision: v1.1.0
flagsmith_workflows_revision: v1.2.5
flagsmith_auth_controller_revision: v0.0.1
flagsmith_rbac_revision: v0.4.1
flagsmith_rbac_revision: v0.5.0
sse_pgp_private_key: ${{ secrets.SSE_PGP_PRIVATE_KEY }}

- name: Deploy task processor to Production
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/api-deploy-staging-ecs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
flagsmith_saml_revision: v1.1.0
flagsmith_workflows_revision: v1.2.5
flagsmith_auth_controller_revision: v0.0.1
flagsmith_rbac_revision: v0.4.1
flagsmith_rbac_revision: v0.5.0
sse_pgp_private_key: ${{ secrets.SSE_PGP_PRIVATE_KEY }}

- name: Deploy task processor to Staging
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/api-tests-with-private-packages.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Run API tests with private package

on:
pull_request:
merge_group:
branches:
- main
Expand All @@ -13,10 +14,13 @@ defaults:
working-directory: api

env:
FLAGSMITH_RBAC_REVISION: v0.4.1
FLAGSMITH_RBAC_REVISION: v0.5.0

jobs:
test:
# NOTE: we need to include pull_request trigger to trigger `merge_group` event
# ref: https://github.com/orgs/community/discussions/51120#discussioncomment-6312578
if: ${{ github.event_name == 'merge_group' }}
runs-on: ubuntu-latest
name: API Tests

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

env:
FLAGSMITH_SAML_REVISION: v1.1.0
FLAGSMITH_RBAC_REVISION: v0.4.1
FLAGSMITH_RBAC_REVISION: v0.5.0
FLAGSMITH_WORKFLOWS_REVISION: v1.2.5
FLAGSMITH_AUTH_CONTROLLER_REVISION: v0.0.1

Expand Down