Skip to content

Commit

Permalink
[ci] update github workflows to use actions/checkout@v4
Browse files Browse the repository at this point in the history
  • Loading branch information
mostynb committed May 23, 2024
1 parent 54d1782 commit 1be29a5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/setup-go@v3
with:
go-version: '1.22.0'
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/idle_timer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: actions/setup-go@v3
with:
go-version: '1.21.5'
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: build bazel-remote
run: ./linux-build.sh
- name: run with idle-timeout 1m
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: get release version
id: release_version
run: echo VERSION=${GITHUB_REF/refs\/tags\/v/} >> $GITHUB_ENV
Expand Down Expand Up @@ -40,7 +40,7 @@ jobs:
runs-on: macos-11
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: get release version
id: release_version
run: echo VERSION=${GITHUB_REF/refs\/tags\/v/} >> $GITHUB_ENV
Expand Down

0 comments on commit 1be29a5

Please sign in to comment.