Skip to content

Commit

Permalink
Point to unreleased workflows (#649)
Browse files Browse the repository at this point in the history
* Point to unreleased workflows

New releases will not happen anymore

* Fix checkout configuration

Set correct reference when checking out pull requests
  • Loading branch information
fbiville authored Sep 10, 2024
1 parent deebc69 commit 73ca946
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/attach-artifact-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ on:

jobs:
attach-artifact-to-release:
uses: liquibase/build-logic/.github/workflows/extension-attach-artifact-release.yml@v0.7.8
uses: liquibase/build-logic/.github/workflows/extension-attach-artifact-release.yml@main
secrets: inherit

2 changes: 1 addition & 1 deletion .github/workflows/build-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
nightly-build:
uses: liquibase/build-logic/.github/workflows/os-extension-test.yml@v0.7.8
uses: liquibase/build-logic/.github/workflows/os-extension-test.yml@main
with:
nightly: true
secrets: inherit
2 changes: 1 addition & 1 deletion .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ on:

jobs:
create-release:
uses: liquibase/build-logic/.github/workflows/create-release.yml@v0.7.8
uses: liquibase/build-logic/.github/workflows/create-release.yml@main
secrets: inherit

2 changes: 2 additions & 0 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha || github.ref }}

- name: Build
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-published.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
release:
uses: liquibase/build-logic/.github/workflows/extension-release-published.yml@v0.7.8
uses: liquibase/build-logic/.github/workflows/extension-release-published.yml@main
secrets: inherit
with:
nameSpace: neo4j
nameSpace: neo4j
4 changes: 3 additions & 1 deletion .github/workflows/test-5x-driver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

build-test:
needs: authorize
uses: liquibase/build-logic/.github/workflows/os-extension-test.yml@v0.7.8
uses: liquibase/build-logic/.github/workflows/os-extension-test.yml@main
secrets: inherit

integration-test:
Expand Down Expand Up @@ -63,6 +63,8 @@ jobs:

steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha || github.ref }}

- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

build-test:
needs: authorize
uses: liquibase/build-logic/.github/workflows/os-extension-test.yml@v0.7.8
uses: liquibase/build-logic/.github/workflows/os-extension-test.yml@main
secrets: inherit

integration-test:
Expand Down Expand Up @@ -72,6 +72,8 @@ jobs:

steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha || github.ref }}

- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
Expand Down

0 comments on commit 73ca946

Please sign in to comment.