Skip to content

Commit 0ee5238

Browse files
committed
Updated to actions/checkout@v3
1 parent 2c1922d commit 0ee5238

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v3
1717
- name: Set version env
1818
run: echo "CI_VERSION=$(cat src/version.go | grep 'BuildVersion =' | cut -d'"' -f2 | awk NF)" >> $GITHUB_ENV
1919
- name: Set up QEMU

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
1515
- name: Set version env
1616
run: echo "CI_VERSION=$(cat src/version.go | grep 'BuildVersion =' | cut -d'"' -f2 | awk NF)" >> $GITHUB_ENV
1717
- name: Set up QEMU

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v3
1717
- name: Build integration test image
1818
run: docker build -t compose-test -f test.Dockerfile .
1919
- name: Run integration test

0 commit comments

Comments
 (0)