Skip to content

Commit 0bb21a6

Browse files
authored
Merge pull request #486 from jj22ee/update-gh-actions
Update artifact/cache Github Actions to v4, update Readme wording
2 parents a35de71 + 573bc72 commit 0bb21a6

File tree

3 files changed

+5
-8
lines changed

3 files changed

+5
-8
lines changed

.github/workflows/IntegrationTesting.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
working-directory: ./sample-apps/http-server
3434

3535
- name: Upload WebApp with X-Ray SDK build artifact
36-
uses: actions/upload-artifact@v2
36+
uses: actions/upload-artifact@v4
3737
with:
3838
name: deployment-package
3939
path: sample-apps/http-server/deploy.zip
@@ -47,7 +47,7 @@ jobs:
4747
- uses: actions/checkout@v2
4848

4949
- name: Download terraform state artifact
50-
uses: actions/download-artifact@v2
50+
uses: actions/download-artifact@v4
5151
with:
5252
name: deployment-package
5353

@@ -85,7 +85,7 @@ jobs:
8585
working-directory: ./terraform
8686

8787
- name: Upload terraform state files for destorying resources
88-
uses: actions/upload-artifact@v2
88+
uses: actions/upload-artifact@v4
8989
with:
9090
name: terraform-state-artifact
9191
path: ./terraform
@@ -123,7 +123,7 @@ jobs:
123123

124124
steps:
125125
- name: Download terraform state artifact
126-
uses: actions/download-artifact@v2
126+
uses: actions/download-artifact@v4
127127
with:
128128
name: terraform-state-artifact
129129

.github/workflows/ecr-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
uses: docker/setup-buildx-action@v1
2525

2626
- name: Cache Docker layer
27-
uses: actions/cache@v2
27+
uses: actions/cache@v4
2828
with:
2929
path: /tmp/.buildx-cache
3030
key: ${{ runner.os }}-buildx-${{ github.sha }}

README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -206,9 +206,6 @@ func getExample(ctx context.Context) ([]byte, error) {
206206

207207
**AWS SDK Instrumentation**
208208

209-
> [!WARNING]
210-
> Support for AWS SDK Instrumentation has been removed in V2 of the AWS X-Ray SDK for Go
211-
212209
```go
213210
func main() {
214211
// Create a segment

0 commit comments

Comments
 (0)