77jobs :
88 test :
99 name : Test
10- runs-on : ubuntu-20 .04
10+ runs-on : ubuntu-22 .04
1111 container :
1212 # Source: https://github.com/day8/dockerfile-for-dev-ci-image
13- image : ghcr.io/day8/dockerfile-for-dev-ci-image/chrome-56:2
13+ image : ghcr.io/day8/dockerfile-for-dev-ci-image/chrome-56:2
1414 credentials :
1515 username : ${{ github.actor }}
1616 password : ${{ secrets.GITHUB_TOKEN }}
1717 steps :
18- - uses : actions/checkout@v2
18+ - uses : actions/checkout@v3
1919 with :
2020 # All of the Git history is required for day8/lein-git-inject to determine the version string.
2121 fetch-depth : 0
2222 - name : Maven cache
23- uses : actions/cache@v1
23+ uses : actions/cache@v3
2424 with :
2525 path : /root/.m2/repository
2626 key : ${{ runner.os }}-maven-${{ hashFiles('project.clj', '.github/workflows/**') }}
2727 restore-keys : |
2828 ${{ runner.os }}-maven-
2929 - name : npm cache
30- uses : actions/cache@v1
30+ uses : actions/cache@v3
3131 with :
3232 path : ~/.npm
3333 key : ${{ runner.os }}-npm-${{ hashFiles('project.clj') }}-${{ hashFiles('**/deps.cljs') }}
4242 ${{ runner.os }}-shadow-cljs-
4343 - run : lein ci
4444 - name : Slack notification
45- uses : homoluctus /slatify@v2.0.1
45+ uses : lazy-actions /slatify@master
4646 if : failure() || cancelled()
4747 with :
4848 type : ${{ job.status }}
@@ -54,20 +54,20 @@ jobs:
5454 release :
5555 name : Release
5656 needs : test
57- runs-on : ubuntu-20 .04
57+ runs-on : ubuntu-22 .04
5858 container :
5959 # Source: https://github.com/day8/dockerfile-for-dev-ci-image
60- image : ghcr.io/day8/dockerfile-for-dev-ci-image/chrome-56:2
60+ image : ghcr.io/day8/dockerfile-for-dev-ci-image/chrome-56:2
6161 credentials :
6262 username : ${{ github.actor }}
6363 password : ${{ secrets.GITHUB_TOKEN }}
6464 steps :
65- - uses : actions/checkout@v2
65+ - uses : actions/checkout@v3
6666 with :
6767 # All of the Git history is required for day8/lein-git-inject to determine the version string.
6868 fetch-depth : 0
6969 - name : Maven cache
70- uses : actions/cache@v1
70+ uses : actions/cache@v3
7171 with :
7272 path : /root/.m2/repository
7373 key : ${{ runner.os }}-maven-${{ hashFiles('project.clj', '.github/workflows/**') }}
9292 draft : false
9393 prerelease : false
9494 - name : Slack notification
95- uses : homoluctus /slatify@v2.0.1
95+ uses : lazy-actions /slatify@master
9696 if : always()
9797 with :
9898 type : ${{ job.status }}
0 commit comments