Skip to content

Commit

Permalink
remove more release jobs and apply some upgrades to remaining jobs (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning authored Feb 14, 2023
1 parent 70ebf66 commit a06b08e
Show file tree
Hide file tree
Showing 10 changed files with 30 additions and 145 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ on:
pull_request:
push:
branches:
- master
- migration-tool # remove before merging to master
- main
- migration-tool # remove before merging to main
tags-ignore: [ v.* ]

jobs:
check-code-style:
name: Check Code Style
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
# we don't know what commit the last tag was it's safer to get entire repo so previousStableVersion resolves
fetch-depth: 0
Expand All @@ -39,10 +39,10 @@ jobs:

check-code-compilation:
name: Check Code Compilation
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0

Expand All @@ -66,10 +66,10 @@ jobs:

check-docs:
name: Check Docs
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/h2-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ on:
pull_request:
push:
branches:
- master
- migration-tool # remove before merging to master
- main
- migration-tool # remove before merging to main
tags-ignore: [ v.* ]

jobs:
test:
name: Build and Test
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
Expand All @@ -22,7 +22,7 @@ jobs:
- { java-version: [email protected], scala-version: 2.13.8, sbt-opts: '-J-XX:+UnlockExperimentalVMOptions -J-XX:+UseJVMCICompiler' }
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/link-validator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ on:

jobs:
validate-links:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
# See https://github.com/actions/checkout/issues/299#issuecomment-677674415
ref: ${{ github.event.pull_request.head.sha }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/mysql-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ on:
pull_request:
push:
branches:
- master
- migration-tool # remove before merging to master
- main
- migration-tool # remove before merging to main
tags-ignore: [ v.* ]

jobs:
integration-test:
name: Integration Tests
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
Expand All @@ -21,7 +21,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/oracle-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ on:
pull_request:
push:
branches:
- master
- migration-tool # remove before merging to master
- main
- migration-tool # remove before merging to main
tags-ignore: [ v.* ]

jobs:
integration-test:
name: Integration Tests
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
Expand All @@ -21,7 +21,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/postgres-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ on:
pull_request:
push:
branches:
- master
- migration-tool # remove before merging to master
- main
- migration-tool # remove before merging to main
tags-ignore: [ v.* ]

jobs:
integration-test:
name: Integration Tests
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
Expand All @@ -21,7 +21,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0

Expand Down
19 changes: 0 additions & 19 deletions .github/workflows/release-drafter.yml

This file was deleted.

54 changes: 0 additions & 54 deletions .github/workflows/release.yml

This file was deleted.

42 changes: 0 additions & 42 deletions .github/workflows/snapshot-release.yaml

This file was deleted.

8 changes: 4 additions & 4 deletions .github/workflows/sqlserver-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ on:
pull_request:
push:
branches:
- master
- migration-tool # remove before merging to master
- main
- migration-tool # remove before merging to main
tags-ignore: [ v.* ]

jobs:
integration-test:
name: Integration Tests
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
Expand All @@ -21,7 +21,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0

Expand Down

0 comments on commit a06b08e

Please sign in to comment.