Skip to content

Commit

Permalink
Update GH actions version (#247)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasIO authored Dec 13, 2024
1 parent c6a3cff commit 490ad26
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,19 @@ name: Build
on:
workflow_dispatch:
push:
branches: [ main ]
branches: [main]
pull_request:
branches: [ main ]
branches: [main]

jobs:
integration:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
lfs: true

- uses: actions/cache@v2
- uses: actions/cache@v4
with:
path: |
~/go/pkg/mod
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ on:
push:
# only publish on version tags
tags:
- 'v*.*.*'
- "v*.*.*"

jobs:
docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- uses: actions/cache@v2
- uses: actions/cache@v4
with:
path: |
~/go/pkg/mod
Expand All @@ -49,7 +49,7 @@ jobs:
type=semver,pattern=v{{major}}.{{minor}}
- name: Set up Go
uses: actions/setup-go@v2
uses: actions/setup-go@v4
with:
go-version: "1.22"

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
runs-on: buildjet-8vcpu-ubuntu-2204

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install Opus dependencies
run: sudo apt-get update && sudo apt-get install -y libopus-dev libopusfile-dev libsoxr-dev
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
go test -coverpkg=./... -json -v -coverprofile=coverage2.out -covermode=atomic ./test/integration/... 2>&1 | tee -a /tmp/gotest.log | gotestfmt
- name: Upload test log
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: test-log
Expand Down

0 comments on commit 490ad26

Please sign in to comment.