Skip to content
This repository was archived by the owner on Jan 19, 2023. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/electron.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions/[email protected]
with:
node-version: '16'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
go_linter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions/setup-go@v2
with:
go-version: 1.17.x
Expand All @@ -26,7 +26,7 @@ jobs:
eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions/[email protected]
with:
node-version: '16'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions/[email protected]
with:
node-version: '16'
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
runs-on: ubuntu-latest
container: goreleaser/goreleaser:v1.0.0
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/download-artifact@v2
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/preflight-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ${{ matrix.platform }}
name: Golang tests on ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions/[email protected]
with:
node-version: '16'
Expand All @@ -46,7 +46,7 @@ jobs:
- uses: actions/setup-go@v2
with:
go-version: 1.17.x
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Get tag
run: echo "GITHUB_TAG=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
- name: Verify tag
Expand All @@ -61,7 +61,7 @@ jobs:
runs-on: ${{ matrix.platform }}
name: Karma tests on ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions/[email protected]
with:
node-version: '16'
Expand All @@ -81,7 +81,7 @@ jobs:
runs-on: ${{ matrix.platform }}
name: Build on ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions/[email protected]
with:
node-version: '16'
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:
runs-on: ubuntu-latest
container: goreleaser/goreleaser:v1.0.0
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/download-artifact@v2
Expand All @@ -155,7 +155,7 @@ jobs:
needs: [goreleaser, bundle_assets]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions/download-artifact@v2
with:
name: binary-artifacts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verify-generated.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Install libraries
run: sudo apt-get update && sudo apt install -y libgpgme-dev libassuan-dev libdevmapper-dev libbtrfs-dev
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Verify generated code
run: ci/check-generated-mocks.sh
- name: Verify npm registry
Expand Down