Bump ch.qos.logback:logback-classic from 1.5.6 to 1.5.7 #829
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build branch/PR | |
# If you want to deploy your branch see branch-deploy.yml | |
on: | |
push: | |
branches: | |
- '*' # matches every branch that doesn't contain a '/' | |
- '*/*' # matches every branch containing a single '/' | |
- '**' # matches every branch | |
- '!master' # excludes master | |
- '!main' # excludes main (will probably replace master) | |
paths-ignore: | |
- '.github/**' | |
- '!.github/workflows/su-se-bakover-branch.yml' | |
- '!.github/actions/build-and-test/**' | |
- '!.github/actions/setup-java/**' | |
- '.idea/**' | |
- 'datapakker/**' | |
- 'local-db-scripts/**' | |
- 'scripts/**' | |
- '.editorconfig' | |
- '*.template' | |
- '.gitignore' | |
- 'alerts.yml' | |
- '*.sh' | |
- 'CODEOWNERS' | |
- 'docker-compose.yml' | |
- 'LICENSE' | |
- '*.md' | |
permissions: {} | |
jobs: | |
build-and-test: | |
name: Build and test | |
runs-on: ubuntu-latest-8-cores | |
permissions: | |
contents: read | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build and test | |
uses: ./.github/actions/build-and-test |