Skip to content
This repository was archived by the owner on Jul 20, 2022. It is now read-only.

Commit 185215c

Browse files
chore(deps): update actions/checkout action to v3
1 parent ac85ed1 commit 185215c

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/lsif.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77
container: sourcegraph/lsif-node
88
steps:
9-
- uses: actions/checkout@v1
9+
- uses: actions/checkout@v3
1010
- name: Install dependencies
1111
run: yarn install
1212
- name: Generate LSIF data

.github/workflows/pr-auditor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
name: pr-auditor
99
steps:
10-
- uses: actions/checkout@v2
10+
- uses: actions/checkout@v3
1111
with: { repository: 'sourcegraph/sourcegraph' }
1212
- uses: actions/setup-go@v2
1313
with: { go-version: '1.18' }

.github/workflows/release-autoindex.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
steps:
1212
-
1313
name: Checkout
14-
uses: actions/checkout@v2
14+
uses: actions/checkout@v3
1515
-
1616
name: Set up Docker Buildx
1717
uses: docker/setup-buildx-action@v1

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
release-image:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v3
1313
- uses: docker/setup-buildx-action@v1
1414
- uses: actions/setup-node@v2
1515
with:
@@ -19,7 +19,7 @@ jobs:
1919
run: |
2020
git config --global user.email "bot@sourcegraph.org"
2121
git config --global user.name "Sourcegraph Bot"
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v3
2323
- name: Get the tag version
2424
run: echo "NEW_VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_ENV
2525
- run: yarn version --no-git-tag-version --new-version ${{ env.NEW_VERSION }}

0 commit comments

Comments
 (0)