Skip to content

Commit

Permalink
Update GitHub Actions packages to resolve warnings in CI
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
austinvazquez committed Feb 19, 2024
1 parent 08a9ca2 commit c6246dd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docs-and-linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:
name: Documentation and Linting
steps:

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
path: go/src/github.com/opencontainers/image-spec

- uses: actions/setup-go@v3
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}

Expand All @@ -41,7 +41,7 @@ jobs:
make docs
- name: documentation artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: oci-docs
path: go/src/github.com/opencontainers/image-spec/output

0 comments on commit c6246dd

Please sign in to comment.