Skip to content

Commit

Permalink
Merge pull request #27 from KES-IT/dependabot/github_actions/actions/…
Browse files Browse the repository at this point in the history
…checkout-4

chore(deps): bump actions/checkout from 3 to 4
  • Loading branch information
hamster1963 authored Sep 27, 2023
2 parents cba426e + 65f2115 commit ca485a6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/GoCompileTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
name: Go Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: '1.21'
Expand All @@ -34,7 +34,7 @@ jobs:
needs: golangci-latest
name: Go 1.21 Build Test
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
needs: build-test
name: Go Test
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v4
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/go-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
release_body: ${{ steps.git-cliff.outputs.content }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
go: [ '1.20', '1.21','stable' ]
name: Go ${{ matrix.go }} Build Test
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
environment: production
name: Go Test
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
Expand All @@ -105,7 +105,7 @@ jobs:
- name: Get version
id: get_version
run: echo "CURRENT_VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: hamster1963/go-release-action@v1.2
with:
github_token: ${{ secrets.GITHUB_TOKEN }} # 一个默认的变量用来实现往 Release 中添加文件
Expand Down

0 comments on commit ca485a6

Please sign in to comment.