Skip to content

Commit fb54d06

Browse files
committed
1 parent a208c54 commit fb54d06

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

.github/workflows/debug.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
name: Debug
2+
3+
permissions: {} # none, https://docs.github.com/en/actions/reference/workflows-and-actions/workflow-syntax#permissions
24
on:
35
push:
46
workflow_dispatch:

.github/workflows/release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
name: Update the v1 branch when a release is published
2+
3+
permissions:
4+
contents: write
25
on:
36
release:
47
types: [published]
@@ -7,7 +10,7 @@ jobs:
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

.github/workflows/test.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
name: Test this action
2+
3+
permissions:
4+
contents: read
25
on:
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
@@ -30,7 +32,7 @@ jobs:
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

0 commit comments

Comments
 (0)