diff --git a/.github/workflows/cleanup.yml b/.github/workflows/cleanup.yml deleted file mode 100644 index 8f5136657b..0000000000 --- a/.github/workflows/cleanup.yml +++ /dev/null @@ -1,44 +0,0 @@ -name: "Dry-Run Cleanup" -run-name: "Dry Run Cleanup for ${{ github.ref }}" - -on: - workflow_dispatch: - inputs: - confirm: - description: Indicate whether you want this workflow to run (must be "true") - required: true - type: string - tag: - description: The name of the tag (and release) to clean up - required: true - type: string - -jobs: - release: - name: "Dry-Run Cleanup" - environment: release - runs-on: 'ubuntu-latest' - if: ${{ inputs.confirm == 'true' }} - - permissions: - # required for all workflows - security-events: write - - # required to fetch internal or private CodeQL packs - packages: read - - # only required for workflows in private repositories - actions: read - contents: write - - # required by the mongodb-labs/drivers-github-tools/setup@v2 step - # also required by `rubygems/release-gem` - id-token: write - - steps: - - name: "Run the cleanup action" - uses: mongodb-labs/drivers-github-tools/ruby/cleanup@v2 - with: - app_id: ${{ vars.APP_ID }} - app_private_key: ${{ secrets.APP_PRIVATE_KEY }} - tag: ${{ inputs.tag }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ed77f56a5d..1943ada270 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -33,7 +33,7 @@ permissions: pull-requests: read contents: write - # required by the mongodb-labs/drivers-github-tools/setup@v2 step + # required by the mongodb-labs/drivers-github-tools/setup@v3 step # also required by `rubygems/release-gem` id-token: write @@ -47,7 +47,7 @@ jobs: steps: - name: "Run the check action" id: check - uses: jamis/drivers-github-tools/ruby/pr-check@ruby-3643-update-release-process + uses: mongodb-labs/drivers-github-tools/ruby/pr-check@v3 build: name: "Build Gems" @@ -56,7 +56,7 @@ jobs: runs-on: ubuntu-latest steps: - name: "Run the build action" - uses: jamis/drivers-github-tools/ruby/build@ruby-3643-update-release-process + uses: mongodb-labs/drivers-github-tools/ruby/build@v3 with: app_id: ${{ vars.APP_ID }} app_private_key: ${{ secrets.APP_PRIVATE_KEY }} @@ -72,7 +72,7 @@ jobs: runs-on: 'ubuntu-latest' steps: - name: "Run the publish action" - uses: jamis/drivers-github-tools/ruby/publish@ruby-3643-update-release-process + uses: mongodb-labs/drivers-github-tools/ruby/publish@v3 with: app_id: ${{ vars.APP_ID }} app_private_key: ${{ secrets.APP_PRIVATE_KEY }} diff --git a/lib/mongoid/version.rb b/lib/mongoid/version.rb index e74d44b6f4..0bcbb1f59a 100644 --- a/lib/mongoid/version.rb +++ b/lib/mongoid/version.rb @@ -5,5 +5,5 @@ module Mongoid # # Note that this file is automatically updated via `rake candidate:create`. # Manual changes to this file will be overwritten by that rake task. - VERSION = '9.0.7' + VERSION = '9.0.8' end diff --git a/product.yml b/product.yml index 0ad798ecf9..db8bf4281b 100644 --- a/product.yml +++ b/product.yml @@ -4,5 +4,5 @@ description: a Ruby ODM for MongoDB package: mongoid jira: https://jira.mongodb.org/projects/MONGOID version: - number: 9.0.7 + number: 9.0.8 file: lib/mongoid/version.rb