Skip to content

Commit eacf740

Browse files
authored
Merge pull request #1 from AlexGidarakos/feature/upgrade-actions
Update deprecated versions of actions used
2 parents 41950e0 + c45314b commit eacf740

6 files changed

+32
-30
lines changed

.github/workflows/artifact.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,18 @@ jobs:
1212
name: Artifact
1313
steps:
1414
- name: Checkout repository
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v4
1616

1717
- name: Download Artifact
18-
uses: badgerhobbs/terraform-state@v1
18+
uses: badgerhobbs/terraform-state@v2
1919
with:
2020
operation: download
2121
location: artifact
2222
github_token: ${{ secrets.gh_access_token }}
2323
continue-on-error: true
2424

2525
- name: Configure Terraform
26-
uses: hashicorp/setup-terraform@v2
26+
uses: hashicorp/setup-terraform@v3
2727

2828
- name: Initialize Terraform
2929
run: terraform init
@@ -37,7 +37,7 @@ jobs:
3737
terraform apply -auto-approve -var="run_id=${{ github.run_id }}"
3838
3939
- name: Upload Artifact
40-
uses: badgerhobbs/terraform-state@v1
40+
uses: badgerhobbs/terraform-state@v2
4141
with:
4242
operation: upload
4343
location: artifact

.github/workflows/artifact_encrypted.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
name: Artifact Encrypted
1313
steps:
1414
- name: Checkout repository
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v4
1616

1717
- name: Download Encrypted Artifact & Decrypt Artifact
18-
uses: badgerhobbs/terraform-state@v1
18+
uses: badgerhobbs/terraform-state@v2
1919
with:
2020
encryption_key: ${{ secrets.encryption_key }}
2121
operation: download
@@ -24,7 +24,7 @@ jobs:
2424
continue-on-error: true
2525

2626
- name: Configure Terraform
27-
uses: hashicorp/setup-terraform@v2
27+
uses: hashicorp/setup-terraform@v3
2828

2929
- name: Initialize Terraform
3030
run: terraform init
@@ -38,7 +38,7 @@ jobs:
3838
terraform apply -auto-approve -var="run_id=${{ github.run_id }}"
3939
4040
- name: Encrypt Artifact & Upload Encrypted Artifact
41-
uses: badgerhobbs/terraform-state@v1
41+
uses: badgerhobbs/terraform-state@v2
4242
with:
4343
encryption_key: ${{ secrets.encryption_key }}
4444
operation: upload

.github/workflows/repository_file.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ jobs:
1212
name: Repository File
1313
steps:
1414
- name: Checkout repository
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v4
1616
with:
1717
token: ${{ secrets.gh_access_token }}
1818

1919
- name: Configure Terraform
20-
uses: hashicorp/setup-terraform@v2
20+
uses: hashicorp/setup-terraform@v3
2121

2222
- name: Initialize Terraform
2323
run: terraform init
@@ -36,7 +36,7 @@ jobs:
3636
ls -R
3737
3838
- name: Commit Repository File
39-
uses: badgerhobbs/terraform-state@v1
39+
uses: badgerhobbs/terraform-state@v2
4040
with:
4141
operation: upload
4242
location: repository

.github/workflows/repository_file_encrypted.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,20 @@ jobs:
1212
name: Repository File Encrypted
1313
steps:
1414
- name: Checkout repository
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v4
1616
with:
1717
token: ${{ secrets.gh_access_token }}
1818

1919
- name: Decrypt Repository File
20-
uses: badgerhobbs/terraform-state@v1
20+
uses: badgerhobbs/terraform-state@v2
2121
with:
2222
encryption_key: ${{ secrets.encryption_key }}
2323
operation: download
2424
location: repository
2525
continue-on-error: true
2626

2727
- name: Configure Terraform
28-
uses: hashicorp/setup-terraform@v2
28+
uses: hashicorp/setup-terraform@v3
2929

3030
- name: Initialize Terraform
3131
run: terraform init
@@ -44,7 +44,7 @@ jobs:
4444
ls -R
4545
4646
- name: Encrypt and Commit Repository File
47-
uses: badgerhobbs/terraform-state@v1
47+
uses: badgerhobbs/terraform-state@v2
4848
with:
4949
encryption_key: ${{ secrets.encryption_key }}
5050
operation: upload

README.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ It is recommended to use GitHub secrets to store the `encryption_key` and `githu
2424

2525
### Usage
2626

27-
The following examples illustrates the best practices to use `terraform-state` to handle various scenarios of uploading and downloading a Terraform state file.
27+
The following examples illustrate the best practices to use `terraform-state` to handle various scenarios of uploading and downloading a Terraform state file.
2828

2929
In addition, please note that while storing encrypted state within the repository ensures reasonable security, it is not recommended specifically for public repositories. Preferably, you should use artifacts. However, keep in mind that artifacts by default only last 90 days (can be changed in the repository settings).
3030

31-
When using storing the Terraform state within the repository, changes are commited to the current branch. To prevent endless loops when the GitHub Action is triggered to run on push, configure the following.
31+
When storing the Terraform state within the repository, changes are commited to the current branch. To prevent endless loops when the GitHub Action is triggered to run on push, configure the following.
3232

3333
```yml
3434
push:
@@ -39,19 +39,19 @@ push:
3939
4040
#### Artifact
4141
42-
Please see thie [Example Workflow](.github/workflows/artifact.yml).
42+
Please see this [Example Workflow](.github/workflows/artifact.yml).
4343
4444
```yml
4545
- name: Download Artifact
46-
uses: badgerhobbs/terraform-state@v1
46+
uses: badgerhobbs/terraform-state@v2
4747
with:
4848
operation: download
4949
location: artifact
5050
github_token: ${{ secrets.gh_access_token }}
5151
continue-on-error: true
5252

5353
- name: Upload Artifact
54-
uses: badgerhobbs/terraform-state@v1
54+
uses: badgerhobbs/terraform-state@v2
5555
with:
5656
operation: upload
5757
location: artifact
@@ -60,11 +60,11 @@ Please see thie [Example Workflow](.github/workflows/artifact.yml).
6060
6161
#### Artifact Encrypted
6262
63-
Please see thie [Example Workflow](.github/workflows/artifact_encrypted.yml).
63+
Please see this [Example Workflow](.github/workflows/artifact_encrypted.yml).
6464
6565
```yml
6666
- name: Download Encrypted Artifact & Decrypt Artifact
67-
uses: badgerhobbs/terraform-state@v1
67+
uses: badgerhobbs/terraform-state@v2
6868
with:
6969
encryption_key: ${{ secrets.encryption_key }}
7070
operation: download
@@ -73,7 +73,7 @@ Please see thie [Example Workflow](.github/workflows/artifact_encrypted.yml).
7373
continue-on-error: true
7474

7575
- name: Encrypt Artifact & Upload Encrypted Artifact
76-
uses: badgerhobbs/terraform-state@v1
76+
uses: badgerhobbs/terraform-state@v2
7777
with:
7878
encryption_key: ${{ secrets.encryption_key }}
7979
operation: upload
@@ -83,31 +83,31 @@ Please see thie [Example Workflow](.github/workflows/artifact_encrypted.yml).
8383
8484
#### Repository File
8585
86-
Please see thie [Example Workflow](.github/workflows/repository_file.yml).
86+
Please see this [Example Workflow](.github/workflows/repository_file.yml).
8787
8888
```yml
8989
- name: Commit Repository File
90-
uses: badgerhobbs/terraform-state@v1
90+
uses: badgerhobbs/terraform-state@v2
9191
with:
9292
operation: upload
9393
location: repository
9494
```
9595
9696
#### Repository File Encrypted
9797
98-
Please see thie [Example Workflow](.github/workflows/repository_file_encrypted.yml).
98+
Please see this [Example Workflow](.github/workflows/repository_file_encrypted.yml).
9999
100100
```yml
101101
- name: Decrypt Repository File
102-
uses: badgerhobbs/terraform-state@v1
102+
uses: badgerhobbs/terraform-state@v2
103103
with:
104104
encryption_key: ${{ secrets.encryption_key }}
105105
operation: download
106106
location: repository
107107
continue-on-error: true
108108

109109
- name: Encrypt and Commit Repository File
110-
uses: badgerhobbs/terraform-state@v1
110+
uses: badgerhobbs/terraform-state@v2
111111
with:
112112
encryption_key: ${{ secrets.encryption_key }}
113113
operation: upload

action.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,11 @@ runs:
5252
5353
- name: Upload Artifact
5454
if: "${{ inputs.location == 'artifact' && inputs.operation == 'upload' && inputs.encryption_key == '' }}"
55-
uses: actions/upload-artifact@v3
55+
uses: actions/upload-artifact@v4
5656
with:
5757
name: Terraform State
5858
path: "${{ inputs.directory }}/terraform.tfstate"
59+
overwrite: true
5960

6061
# Encrypted Artifact
6162
- name: Download Encrypted Artifact
@@ -88,10 +89,11 @@ runs:
8889
8990
- name: Upload Encrypted Artifact
9091
if: "${{ inputs.location == 'artifact' && inputs.operation == 'upload' && inputs.encryption_key != '' }}"
91-
uses: actions/upload-artifact@v3
92+
uses: actions/upload-artifact@v4
9293
with:
9394
name: Encrypted Terraform State
9495
path: "${{ inputs.directory }}/terraform.tfstate.encrypted"
96+
overwrite: true
9597

9698
# Repository File
9799
- name: Commit Repository File

0 commit comments

Comments
 (0)