Skip to content

Commit c6246dd

Browse files
committed
Update GitHub Actions packages to resolve warnings in CI
This change updates actions/checkout to v4, actions/setup-go to v5, and actions/upload-artifacts to v4 to resolve NodeJS 16 deprecation warnings in CI. Signed-off-by: Austin Vazquez <macedonv@amazon.com>
1 parent 08a9ca2 commit c6246dd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/docs-and-linting.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ jobs:
1414
name: Documentation and Linting
1515
steps:
1616

17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818
with:
1919
path: go/src/github.com/opencontainers/image-spec
2020

21-
- uses: actions/setup-go@v3
21+
- uses: actions/setup-go@v5
2222
with:
2323
go-version: ${{ matrix.go }}
2424

@@ -41,7 +41,7 @@ jobs:
4141
make docs
4242
4343
- name: documentation artifacts
44-
uses: actions/upload-artifact@v3
44+
uses: actions/upload-artifact@v4
4545
with:
4646
name: oci-docs
4747
path: go/src/github.com/opencontainers/image-spec/output

0 commit comments

Comments
 (0)