File tree Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 11name : Debug
2+
3+ permissions : {} # none, https://docs.github.com/en/actions/reference/workflows-and-actions/workflow-syntax#permissions
24on :
35 push :
46 workflow_dispatch :
Original file line number Diff line number Diff line change 11name : Update the v1 branch when a release is published
2+
3+ permissions :
4+ contents : write
25on :
36 release :
47 types : [published]
710 release :
811 runs-on : ubuntu-latest
912 steps :
10- - uses : actions/checkout@v4
13+ - uses : actions/checkout@v5
1114 with :
1215 fetch-depth : 0
1316 - run : git push origin HEAD:refs/heads/v1
Original file line number Diff line number Diff line change 11name : Test this action
2+
3+ permissions :
4+ contents : read
25on :
36 pull_request :
47 push :
@@ -15,11 +18,10 @@ jobs:
1518 fail-fast : false
1619 matrix :
1720 os : [ ubuntu-22.04, ubuntu-24.04 ]
18-
1921 name : ${{ matrix.os }}
2022 runs-on : ${{ matrix.os }}
2123 steps :
22- - uses : actions/checkout@v4
24+ - uses : actions/checkout@v5
2325 - run : psql --version
2426 - uses : ./
2527 - run : pg_isready --dbname=$POSTGRES_URL
3032 needs : test
3133 runs-on : ubuntu-latest
3234 steps :
33- - uses : actions/checkout@v4
35+ - uses : actions/checkout@v5
3436 - uses : ./
3537 with :
3638 env-key : DATABASE_URL
You can’t perform that action at this time.
0 commit comments