File tree Expand file tree Collapse file tree 3 files changed +17
-8
lines changed
Expand file tree Collapse file tree 3 files changed +17
-8
lines changed Original file line number Diff line number Diff line change 1+ ---
12name : Docker test and publish
23
34on :
78
89jobs :
910 build-and-publish :
10- runs-on : ubuntu-latest
11+ runs-on : ubuntu-24.04
1112
1213 steps :
13- - uses : actions/checkout@master
14+ - uses : actions/checkout@v4
1415 - name : Set up Ruby 2.6
1516 uses : actions/setup-ruby@v1
1617 with :
17- ruby-version : 2.6.x
18+ ruby-version : ' 3.4'
19+ bundler-cache : true
1820 - run : gem install bundler
1921 - name : Build container
2022 env :
Original file line number Diff line number Diff line change 1+ ---
12name : mend_scan
23on :
34 workflow_dispatch :
67 - main
78jobs :
89 build :
9- runs-on : ubuntu-latest
10+ runs-on : ubuntu-24.04
1011 steps :
1112 - name : connect_twingate
1213 uses : twingate/github-action@v1
1314 with :
1415 service-key : ${{ secrets.TWINGATE_PUBLIC_REPO_KEY }}
1516 - name : checkout repo content
16- uses : actions/checkout@v2 # checkout the repository content to github runner.
17+ uses : actions/checkout@v4 # checkout the repository content to github runner.
1718 with :
1819 fetch-depth : 1
1920 # install java which is required for mend and clojure
Original file line number Diff line number Diff line change 1+ ---
12name : PR testing
23
3- on : [push, pull_request]
4+ # run on each PR and on merges to main
5+ on :
6+ pull_request : {}
7+ push :
8+ branches :
9+ - main
410
511jobs :
612 test :
7- runs-on : ubuntu-latest
13+ runs-on : ubuntu-24.04
814 strategy :
915 matrix :
1016 java : [ '11, '17' ]
1319
1420 name : Java ${{ matrix.java }} tests
1521 steps :
16- - uses : actions/checkout@master
22+ - uses : actions/checkout@v4
1723 - name : setup java
1824 uses : actions/setup-java@v3
1925 with :
You can’t perform that action at this time.
0 commit comments