HHH-15468 Set permissions
This commit is contained in:
parent
f030b845a1
commit
4dea6891a9
|
@ -13,32 +13,35 @@ on:
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
- '5.4'
|
- '5.4'
|
||||||
|
|
||||||
|
permissions: {} # none
|
||||||
|
|
||||||
|
# See https://github.com/hibernate/hibernate-orm/pull/4615 for a description of the behavior we're getting.
|
||||||
|
concurrency:
|
||||||
|
# Consider that two builds are in the same concurrency group (cannot run concurrently)
|
||||||
|
# if they use the same workflow and are about the same branch ("ref") or pull request.
|
||||||
|
group: "workflow = ${{ github.workflow }}, ref = ${{ github.event.ref }}, pr = ${{ github.event.pull_request.id }}"
|
||||||
|
# Cancel previous builds in the same concurrency group even if they are in process
|
||||||
|
# for pull requests or pushes to forks (not the upstream repository).
|
||||||
|
cancel-in-progress: ${{ github.event_name == 'pull_request' || github.repository != 'hibernate/hibernate-orm' }}
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
name: Java 8
|
name: Java 8
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
# We want to know the test results of all matrix entries
|
|
||||||
continue-on-error: true
|
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
# When GitHub Actions supports it: https://github.com/actions/toolkit/issues/399
|
|
||||||
# We will use the experimental flag as indicator whether a failure should cause a workflow failure
|
|
||||||
include:
|
include:
|
||||||
- rdbms: h2
|
- rdbms: h2
|
||||||
experimental: false
|
|
||||||
# - rdbms: derby
|
# - rdbms: derby
|
||||||
# experimental: true
|
|
||||||
# - rdbms: mariadb
|
# - rdbms: mariadb
|
||||||
# experimental: true
|
|
||||||
- rdbms: postgresql
|
- rdbms: postgresql
|
||||||
experimental: true
|
|
||||||
# - rdbms: oracle
|
# - rdbms: oracle
|
||||||
# experimental: true
|
|
||||||
# - rdbms: db2
|
# - rdbms: db2
|
||||||
# experimental: true
|
|
||||||
# - rdbms: mssql
|
# - rdbms: mssql
|
||||||
# experimental: true
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Reclaim Disk Space
|
- name: Reclaim Disk Space
|
||||||
|
|
Loading…
Reference in New Issue