Skip to content
This repository was archived by the owner on Aug 6, 2025. It is now read-only.

liquibase/liquibase-github-action

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

48 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

๐Ÿšจ DEPRECATED - DO NOT USE

โš ๏ธ This action is officially deprecated and will not receive updates or security patches.

Use the New Official Action Instead

Replace this deprecated action with:

- uses: liquibase/setup-liquibase@v1
  with:
    version: '4.32.0'  # or latest
    edition: 'oss'     # or 'pro'
- run: liquibase update --changelog-file=changelog.xml

Why This Change?

  • Modern Architecture: The new action follows GitHub Actions best practices
  • Security: Regular updates and security patches
  • Flexibility: Run any Liquibase command after setup
  • Performance: Faster execution with better caching

Migration Guide

โŒ Old (deprecated):

- uses: liquibase/liquibase-github-action@v7
  with:
    operation: 'update'
    changeLogFile: 'changelog.xml'
    username: ${{ secrets.DB_USER }}
    password: ${{ secrets.DB_PASS }}
    url: ${{ secrets.DB_URL }}

โœ… New (recommended):

- uses: liquibase/setup-liquibase@v1
  with:
    version: '4.32.0'
- run: |
    liquibase update \
      --changelog-file=changelog.xml \
      --username="${{ secrets.DB_USER }}" \
      --password="${{ secrets.DB_PASS }}" \
      --url="${{ secrets.DB_URL }}"

Resources


This repository has been archived. No further updates will be provided. EOF < /dev/null

About

๐Ÿšจ DEPRECATED - Use liquibase/setup-liquibase@v1 instead

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 10