Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CICD] github action 관련 권한을 수정한다 #163

Merged
merged 3 commits into from
Dec 11, 2023
Merged
Changes from all commits
Commits
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
11 changes: 2 additions & 9 deletions .github/workflows/spring_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,28 +8,21 @@
name: Spring CI with Gradle

permissions:
contents: read
issues: read
checks: write
pull-requests: write

on:
push:
branches:
- develop
- main
pull_request:
branches:
- develop
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
with:
repository: DayByQuest/backend
token: ${{ secrets.PRIVATE_KEY }}
- uses: actions/checkout@v3

- name: Set up JDK 17
uses: actions/setup-java@v3
Expand All @@ -38,7 +31,7 @@ jobs:
distribution: 'zulu'

- name: Cache gradle
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
~/.gradle/caches
Expand Down