Skip to content

Commit

Permalink
ci: bump GitHub actions (#894)
Browse files Browse the repository at this point in the history
## Summary

We're seeing deprecation warnings on CI such as here:
https://github.com/react-native-async-storage/async-storage/actions/runs/3864459872

Bumping all the actions to their latest versions to hopefully get rid of
them.

## Test Plan

n/a
  • Loading branch information
tido64 committed Jan 11, 2023
1 parent 95e8ae7 commit cfa67c6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Expand Up @@ -18,7 +18,7 @@ jobs:
key: ${{ runner.os }}-ccache-${{ hashFiles('yarn.lock') }}
restore-keys: ${{ runner.os }}-ccache-
- name: Set up Node.js
uses: actions/setup-node@v3.4.1
uses: actions/setup-node@v3.5.1
with:
node-version: 16
cache: 'yarn'
Expand All @@ -42,11 +42,11 @@ jobs:
- name: Set up MSBuild
uses: microsoft/setup-msbuild@v1.1
- name: Setup VSTest.console.exe
uses: darenm/Setup-VSTest@v1
uses: darenm/Setup-VSTest@v1.2
- name: Checkout
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3.4.1
uses: actions/setup-node@v3.5.1
with:
node-version: 16
cache: 'yarn'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stale.yml
Expand Up @@ -9,7 +9,7 @@ jobs:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v4
- uses: actions/stale@v7
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue has been marked as stale due to inactivity. Please respond or otherwise resolve the issue within 7 days or it will be closed.'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/website-deployment.yml
Expand Up @@ -12,9 +12,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Cache/restore dependencies
uses: actions/cache@v1
uses: actions/cache@v3
id: cache
with:
path: ./website/node_modules
Expand Down

0 comments on commit cfa67c6

Please sign in to comment.