Skip to content

Commit

Permalink
Bump actions/checkout from 3 to 4 (microsoft#1885)
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored and helsaawy committed Sep 27, 2023
1 parent 31d9da0 commit f76a879
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install go
uses: actions/setup-go@v4
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
# protobuild requires the code to be in $GOPATH to translate from github.com/Microsoft/hcsshim
# to the correct path on disk
- name: Checkout hcsshim
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: "${{ github.workspace }}/go/src/github.com/Microsoft/hcsshim"

Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
GOPROXY: "https://proxy.golang.org,direct"
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install go
uses: actions/setup-go@v4
Expand Down Expand Up @@ -168,7 +168,7 @@ jobs:
runs-on: "windows-2022"
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install go
uses: actions/setup-go@v4
Expand Down Expand Up @@ -200,7 +200,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install go
uses: actions/setup-go@v4
Expand Down Expand Up @@ -235,7 +235,7 @@ jobs:
os: [windows-2019, windows-2022]
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install go
uses: actions/setup-go@v4
Expand Down Expand Up @@ -298,7 +298,7 @@ jobs:

steps:
- name: Checkout hcsshim
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: src/github.com/Microsoft/hcsshim

Expand Down Expand Up @@ -330,7 +330,7 @@ jobs:
"containerd_ref=$v" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
working-directory: src/github.com/Microsoft/hcsshim

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
path: src/github.com/containerd/containerd
repository: "containerd/containerd"
Expand Down Expand Up @@ -502,7 +502,7 @@ jobs:
runs-on: "windows-2022"
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install go
uses: actions/setup-go@v4
Expand Down Expand Up @@ -550,7 +550,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install go
uses: actions/setup-go@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
build:
runs-on: "windows-2019"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
Expand Down

0 comments on commit f76a879

Please sign in to comment.