Skip to content

Commit f4f9f82

Browse files
Fix deprecated GitHub Actions versions
- Update actions/cache from v3 to v4 - Update actions/upload-artifact from v3 to v4 - Resolves CI failure due to deprecated action versions Co-Authored-By: Alec Fong <[email protected]>
1 parent 585c530 commit f4f9f82

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
go-version: '1.23.0'
2020

2121
- name: Cache Go modules
22-
uses: actions/cache@v3
22+
uses: actions/cache@v4
2323
with:
2424
path: |
2525
~/.cache/go-build
@@ -42,7 +42,7 @@ jobs:
4242
run: make test-coverage
4343

4444
- name: Upload coverage reports
45-
uses: actions/upload-artifact@v3
45+
uses: actions/upload-artifact@v4
4646
with:
4747
name: coverage-report
4848
path: coverage/
@@ -63,7 +63,7 @@ jobs:
6363
go-version: '1.23.0'
6464

6565
- name: Cache Go modules
66-
uses: actions/cache@v3
66+
uses: actions/cache@v4
6767
with:
6868
path: |
6969
~/.cache/go-build
@@ -79,7 +79,7 @@ jobs:
7979
run: make build-${{ matrix.target }}
8080

8181
- name: Upload build artifacts
82-
uses: actions/upload-artifact@v3
82+
uses: actions/upload-artifact@v4
8383
with:
8484
name: build-${{ matrix.target }}
8585
path: build/

0 commit comments

Comments
 (0)