Skip to content

Commit 5895904

Browse files
committed
chore: upgrade actions to v4
1 parent c9e6dba commit 5895904

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

.github/workflows/maven-and-docker-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,19 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1717
with:
1818
fetch-depth: 0 # For Sonar blame information
1919

2020
- name: Set up Java
21-
uses: actions/setup-java@v3
21+
uses: actions/checkout@v4
2222
with:
2323
java-version: "17"
2424
distribution: "liberica"
2525
cache: "maven"
2626

2727
- name: Cache SonarQube packages
28-
uses: actions/cache@v3
28+
uses: actions/cache@v4
2929
with:
3030
path: ~/.sonar/cache
3131
key: ${{ runner.os }}-sonar

.github/workflows/maven-bump-push-dockerhub.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,20 +23,20 @@ jobs:
2323

2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@v3
26+
uses: actions/checkout@v4
2727
with:
2828
token: ${{ secrets.BUMP_PAT }}
2929
fetch-depth: 0 # For Sonar blame information
3030

3131
- name: Set up Java
32-
uses: actions/setup-java@v3
32+
uses: actions/setup-java@v4
3333
with:
3434
java-version: "17"
3535
distribution: "liberica"
3636
cache: "maven"
3737

3838
- name: Cache SonarQube packages
39-
uses: actions/cache@v3
39+
uses: actions/cache@v4
4040
with:
4141
path: ~/.sonar/cache
4242
key: ${{ runner.os }}-sonar
@@ -95,7 +95,7 @@ jobs:
9595

9696
steps:
9797
- name: Checkout
98-
uses: actions/checkout@v3
98+
uses: actions/checkout@v4
9999

100100
- name: Download JAR Artifact
101101
uses: actions/download-artifact@v4

.github/workflows/redeploy-ecs-service.yml

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

2323
steps:
2424
- name: Checkout code
25-
uses: actions/checkout@v3
25+
uses: actions/checkout@v4
2626

2727
- name: Setup AWS CLI
2828
uses: aws-actions/configure-aws-credentials@v4

.github/workflows/terraform-apply.yml

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

3939
steps:
4040
- name: Checkout
41-
uses: actions/checkout@v3
41+
uses: actions/checkout@v4
4242

4343
- name: Upload Configuration
4444
uses: hashicorp/tfc-workflows-github/actions/[email protected]

.github/workflows/terraform-destroy.yml

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

2121
steps:
2222
- name: Checkout
23-
uses: actions/checkout@v3
23+
uses: actions/checkout@v4
2424

2525
- name: Setup Terraform
2626
uses: hashicorp/setup-terraform@v2

.github/workflows/terraform-plan.yml

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

3535
steps:
3636
- name: Checkout
37-
uses: actions/checkout@v3
37+
uses: actions/checkout@v4
3838

3939
- name: Upload Configuration
4040
uses: hashicorp/tfc-workflows-github/actions/[email protected]

.github/workflows/tflint.yml

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

1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v3
13+
uses: actions/checkout@v4
1414

1515
- name: Setup TFLint
1616
uses: terraform-linters/setup-tflint@v3

.github/workflows/tfsec.yml

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

1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v3
13+
uses: actions/checkout@v4
1414

1515
- name: tfsec
1616
uses: aquasecurity/[email protected]

0 commit comments

Comments
 (0)