summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorWim <wim@42.be>2023-03-10 22:29:44 +0100
committerGitHub <noreply@github.com>2023-03-10 22:29:44 +0100
commit53b63adc71938b020e5003ed29382a14166de1db (patch)
tree35d0e8a0234e07487013a94f1cc396db449d195d /.github
parent2c349c50c72ad2eb503d08bd59e4fc98b3c7e9a0 (diff)
downloadmatterbridge-msglm-53b63adc71938b020e5003ed29382a14166de1db.tar.gz
matterbridge-msglm-53b63adc71938b020e5003ed29382a14166de1db.tar.bz2
matterbridge-msglm-53b63adc71938b020e5003ed29382a14166de1db.zip
Update to actions v3 (#2009)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/development.yml14
1 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/development.yml b/.github/workflows/development.yml
index ff8c1ce4..ed3ac762 100644
--- a/.github/workflows/development.yml
+++ b/.github/workflows/development.yml
@@ -5,11 +5,11 @@ jobs:
name: golangci-lint
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
with:
fetch-depth: 20
- name: Run golangci-lint
- uses: golangci/golangci-lint-action@v2
+ uses: golangci/golangci-lint-action@v3
with:
version: latest
args: "-v --new-from-rev HEAD~5"
@@ -21,12 +21,12 @@ jobs:
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
- uses: actions/setup-go@v2
+ uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
stable: false
- name: Checkout code
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Test
@@ -40,19 +40,19 @@ jobs:
CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build -ldflags "-s -X github.com/42wim/matterbridge/version.GitHash=$(git log --pretty=format:'%h' -n 1)" -o output/mac/matterbridge-$VERSION-darwin-amd64
- name: Upload linux 64-bit
if: startsWith(matrix.go-version,'1.20')
- uses: actions/upload-artifact@v2
+ uses: actions/upload-artifact@v3
with:
name: matterbridge-linux-64bit
path: output/lin
- name: Upload windows 64-bit
if: startsWith(matrix.go-version,'1.20')
- uses: actions/upload-artifact@v2
+ uses: actions/upload-artifact@v3
with:
name: matterbridge-windows-64bit
path: output/win
- name: Upload darwin 64-bit
if: startsWith(matrix.go-version,'1.20')
- uses: actions/upload-artifact@v2
+ uses: actions/upload-artifact@v3
with:
name: matterbridge-darwin-64bit
path: output/mac