Skip to content

Commit

Permalink
chore(deps): update all
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Sep 5, 2023
1 parent 1e94ae7 commit e3f2cf0
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 18 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/go.yml
Expand Up @@ -32,7 +32,7 @@ jobs:
matrix:
golangci_lint: [v1.38]
steps:
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v4.0.0
- name: golangci-lint
uses: golangci/golangci-lint-action@v3.2.0
with:
Expand All @@ -48,9 +48,9 @@ jobs:
matrix:
golang: [1.16.x]
steps:
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v4.0.0
- name: Install Go
uses: actions/setup-go@v2
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.golang }}
- name: Run tests on Windows
Expand All @@ -66,9 +66,9 @@ jobs:
OS: macos-latest
GOLANG: ${{ matrix.golang }}
steps:
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v4.0.0
- name: Install Go
uses: actions/setup-go@v2
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.golang }}
- uses: actions/cache@v3.0.4
Expand All @@ -86,7 +86,7 @@ jobs:
git --no-pager diff go.mod go.sum
git --no-pager diff --quiet go.mod go.sum
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2.1.0
uses: codecov/codecov-action@v3.1.4
with:
#token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.txt
Expand All @@ -107,9 +107,9 @@ jobs:
OS: ubuntu-latest
GOLANG: ${{ matrix.golang }}
steps:
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v4.0.0
- name: Install Go
uses: actions/setup-go@v2
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.golang }}
- uses: actions/cache@v3.0.4
Expand All @@ -127,7 +127,7 @@ jobs:
- name: Run tests on Unix-like operating systems
run: make unittest
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2.1.0
uses: codecov/codecov-action@v3.1.4
with:
#token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.txt
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr.yml
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Release-Notes Preview
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v4.0.0
- run: |
git fetch --prune --unshallow --tags
- uses: snyk/release-notes-preview@v1.6.2
Expand All @@ -26,7 +26,7 @@ jobs:
name: Documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v4.0.0
with:
depth: 1
- uses: nosborn/github-action-markdown-cli@master
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Expand Up @@ -14,14 +14,14 @@ jobs:
steps:
-
name: Checkout
uses: actions/checkout@v2.4.0
uses: actions/checkout@v4.0.0
-
name: Unshallow
run: git fetch --prune --unshallow
-
name: Run Semantic Release
id: semantic
uses: docker://ghcr.io/codfish/semantic-release-action:v1
uses: docker://ghcr.io/codfish/semantic-release-action:v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
-
Expand All @@ -34,12 +34,12 @@ jobs:
set -x +e
curl -i $url
- name: "Validates GO releaser config"
uses: goreleaser/goreleaser-action@v2.9.0
uses: goreleaser/goreleaser-action@v4.6.0
with:
args: check
-
name: Set up Go
uses: actions/setup-go@v2
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.golang }}
-
Expand All @@ -55,7 +55,7 @@ jobs:
make bundle
- name: Run GoReleaser
if: steps.semantic.outputs.new-release-published == 'true'
uses: goreleaser/goreleaser-action@v2.9.0
uses: goreleaser/goreleaser-action@v4.6.0
with:
version: latest
args: release --rm-dist
Expand Down
4 changes: 2 additions & 2 deletions tool/lint/package.json
@@ -1,9 +1,9 @@
{
"dependencies": {
"alex": "10.0.0",
"alex": "11.0.1",
"markdown-spellcheck": "1.3.1",
"markdownlint-cli": "0.31.1",
"remark-cli": "9.0.0",
"remark-lint": "8.0.0"
"remark-lint": "9.1.2"
}
}

0 comments on commit e3f2cf0

Please sign in to comment.