Skip to content

Commit 542d090

Browse files
committed
Update GitHub Actions to latest versions
- Update actions/upload-artifact from v3 to v4 (v3 deprecated) - Update actions/cache from v3 to v4 for consistency
1 parent 579249c commit 542d090

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
go-version: ${{ matrix.go-version }}
2424

2525
- name: Cache Go modules
26-
uses: actions/cache@v3
26+
uses: actions/cache@v4
2727
with:
2828
path: |
2929
~/.cache/go-build
@@ -59,7 +59,7 @@ jobs:
5959
go build -o dist/octojoin${{ matrix.os == 'windows-latest' && '.exe' || '' }} .
6060
6161
- name: Upload build artifacts
62-
uses: actions/upload-artifact@v3
62+
uses: actions/upload-artifact@v4
6363
with:
6464
name: octojoin-${{ matrix.os }}-go${{ matrix.go-version }}
6565
path: dist/

0 commit comments

Comments
 (0)