Skip to content

Commit

Permalink
ci: bump github actions (#1046)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fdawgs authored Apr 11, 2022
1 parent db8d1e7 commit 1eff01d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ jobs:
image: vscodium/vscodium-linux-build-agent:stretch-armhf

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Install GH
run: ./install_gh.sh

- name: Setup Node.js environment
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: 14

Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
if: env.SHOULD_BUILD == 'yes'

- name: Cache yarn directory
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ${{ steps.yarnCacheDirPath.outputs.dir }}
key: linux-${{ matrix.npm_arch }}-yarnCacheDir-${{ steps.yarnCacheKey.outputs.value }}
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
# - arm64

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Check version
run: ./stores/snapcraft/check_version.sh
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:
VSCODE_ARCH: ${{ matrix.vscode_arch }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Setup Node.js environment
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: 14

Expand All @@ -56,7 +56,7 @@ jobs:
if: env.SHOULD_BUILD == 'yes'

- name: Cache yarn directory
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ${{ steps.yarnCacheDirPath.outputs.dir }}
key: ${{ env.OS_NAME }}-${{ env.VSCODE_ARCH }}-yarnCacheDir-${{ steps.yarnCacheKey.outputs.value }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,18 @@ jobs:
vscode_arch: [x64, ia32, arm64]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Setup Node.js environment
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: 14

- name: Install Yarn
run: npm install -g yarn

- name: Setup Python 2
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with:
python-version: '2.x'

Expand All @@ -61,7 +61,7 @@ jobs:
if: env.SHOULD_BUILD == 'yes'

- name: Cache yarn directory
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ${{ steps.yarnCacheDirPath.outputs.dir }}
key: ${{ env.OS_NAME }}-${{ env.VSCODE_ARCH }}-yarnCacheDir-${{ steps.yarnCacheKey.outputs.value }}
Expand Down

0 comments on commit 1eff01d

Please sign in to comment.