Skip to content

Commit c5726fe

Browse files
Bump actions/checkout from 2 to 4
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 024ed0e commit c5726fe

7 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/cli.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515

1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818
- name: Build
1919
run: cargo build --release --verbose
2020
working-directory: ./cli

.github/workflows/pgTAP.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
build:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v3
10+
- uses: actions/checkout@v4
1111
- uses: supabase/setup-cli@v1
1212
with:
1313
version: 1.127.4

.github/workflows/pre-commit_hooks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
steps:
1010
- name: checkout
11-
uses: actions/checkout@v2
11+
uses: actions/checkout@v4
1212

1313
- name: set up python 3.10
1414
uses: actions/setup-python@v1

.github/workflows/prettier.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Check out repo
13-
uses: actions/checkout@v3
13+
uses: actions/checkout@v4
1414
with:
1515
ref: ${{ github.head_ref }}
1616
- name: Run Prettier

.github/workflows/release-cli.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
profile: minimal
6363
toolchain: stable
6464

65-
- uses: actions/checkout@v3
65+
- uses: actions/checkout@v4
6666
- name: Build and Package
6767
run: |
6868
cd cli
@@ -128,7 +128,7 @@ jobs:
128128
profile: minimal
129129
toolchain: stable
130130

131-
- uses: actions/checkout@v3
131+
- uses: actions/checkout@v4
132132
- name: Build and Package
133133
run: |
134134
cd cli
@@ -159,7 +159,7 @@ jobs:
159159
profile: minimal
160160
toolchain: stable
161161

162-
- uses: actions/checkout@v3
162+
- uses: actions/checkout@v4
163163
- name: Build and Package
164164
run: |
165165
cd cli

.github/workflows/release-homebrew-tap.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
release:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818
with:
1919
repository: supabase/homebrew-tap
2020
ref: 'main'

.github/workflows/release-scoop-bucket.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
release:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818
with:
1919
repository: supabase/scoop-bucket
2020
ref: 'main'

0 commit comments

Comments
 (0)