Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
44367e5
chore(deps): bump expo/expo-github-action from 8 to 9
dependabot[bot] Jul 6, 2026
165475f
chore(deps): bump github/codeql-action from 3 to 4
dependabot[bot] Jul 6, 2026
7a440f3
chore(deps): bump actions/checkout from 4 to 7
dependabot[bot] Jul 6, 2026
c9207a2
chore(deps): bump actions/cache from 4 to 6
dependabot[bot] Jul 6, 2026
7a6cabb
chore(deps): bump actions/setup-java from 4 to 5
dependabot[bot] Jul 6, 2026
9d2ba40
chore(deps): bump actions/setup-node from 4 to 6
dependabot[bot] Jul 6, 2026
594588f
chore: dependabot.yml에서 target-branch를 develop으로 설정
koreahghg Jul 6, 2026
90ac94a
Merge pull request #19 from CKLOB/ci/dependabot-target-develop
koreahghg Jul 6, 2026
1d40058
Merge branch 'develop' into dependabot/github_actions/expo/expo-githu…
koreahghg Jul 6, 2026
1b05ec9
Merge pull request #7 from CKLOB/dependabot/github_actions/expo/expo-…
koreahghg Jul 6, 2026
d53da99
Merge branch 'develop' into dependabot/github_actions/github/codeql-a…
koreahghg Jul 6, 2026
86995bf
Merge pull request #8 from CKLOB/dependabot/github_actions/github/cod…
koreahghg Jul 6, 2026
55f7a7b
Merge branch 'develop' into dependabot/github_actions/actions/checkout-7
koreahghg Jul 6, 2026
9523070
Merge pull request #9 from CKLOB/dependabot/github_actions/actions/ch…
yangeunjun00 Jul 6, 2026
bf9b127
Merge branch 'develop' into dependabot/github_actions/actions/cache-6
koreahghg Jul 6, 2026
7896c76
Merge pull request #10 from CKLOB/dependabot/github_actions/actions/c…
koreahghg Jul 6, 2026
756af77
Merge branch 'develop' into dependabot/github_actions/actions/setup-j…
yangeunjun00 Jul 6, 2026
cee1063
Merge branch 'develop' into dependabot/github_actions/actions/setup-n…
yangeunjun00 Jul 6, 2026
1aee3ec
Merge pull request #12 from CKLOB/dependabot/github_actions/actions/s…
yangeunjun00 Jul 6, 2026
328606a
Merge branch 'develop' into dependabot/github_actions/actions/setup-j…
yangeunjun00 Jul 6, 2026
1e727ad
Merge pull request #11 from CKLOB/dependabot/github_actions/actions/s…
yangeunjun00 Jul 6, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ version: 2
updates:
- package-ecosystem: npm
directory: /
target-branch: develop
schedule:
interval: weekly
open-pull-requests-limit: 10
Expand All @@ -11,5 +12,6 @@ updates:

- package-ecosystem: github-actions
directory: /
target-branch: develop
schedule:
interval: weekly
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version: 24
cache: npm
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
security-events: write
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- uses: github/codeql-action/init@v3
- uses: github/codeql-action/init@v4
with:
languages: javascript-typescript

- uses: github/codeql-action/analyze@v3
- uses: github/codeql-action/analyze@v4
4 changes: 2 additions & 2 deletions .github/workflows/commitlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ jobs:
commitlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
fetch-depth: 0

- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version: 24
cache: npm
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version: 24
cache: npm

- run: npm install

- uses: actions/setup-java@v4
- uses: actions/setup-java@v5
with:
distribution: temurin
java-version: 17
Expand All @@ -35,7 +35,7 @@ jobs:
run: npx expo prebuild --platform android --no-install

- name: Cache Gradle
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: |
~/.gradle/caches
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/eas-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version: 24
cache: npm

- run: npm install

- uses: expo/expo-github-action@v8
- uses: expo/expo-github-action@v9
with:
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/secret-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
gitleaks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
Loading