Skip to content

Commit

Permalink
deploy: 최신 버전 업데이트
Browse files Browse the repository at this point in the history
  • Loading branch information
shinheekim committed Jul 22, 2024
1 parent d1d8ce3 commit e57b531
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3 # Updated to v3

- name: Set up JDK 17
uses: actions/setup-java@v2
uses: actions/setup-java@v3 # Updated to v3
with:
distribution: 'adopt'
java-version: '17'
Expand All @@ -39,13 +39,13 @@ jobs:
mv before-deploy/before-deploy.zip deploy/reredeployfiles.zip
- name: Deploy to S3 (GitHub Artifacts)
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4 # Updated to v4
with:
name: deploy
path: deploy

- name: AWS 자격증명 설정
uses: aws-actions/configure-aws-credentials@v1
uses: aws-actions/configure-aws-credentials@v2 # Updated to v2
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_KEY }}
Expand All @@ -60,4 +60,4 @@ jobs:
--application-name rere-deploy \
--deployment-group-name rere-deploy-group \
--s3-location bucket=rerebucket,key=reredeployfiles.zip,bundleType=zip \
--region ap-northeast-2
--region ap-northeast-2

0 comments on commit e57b531

Please sign in to comment.