Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix CI deprecation warnings, bump to node16 #3482

Merged
merged 8 commits into from
Oct 11, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
changelog:
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Get the version
id: get_version
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
needs: changelog
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: cachix/install-nix-action@v17
with:
extra_nix_config: |
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
runs-on: 'ubuntu-latest'
needs: [ changelog, build ]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: cachix/install-nix-action@v17
- uses: cachix/cachix-action@v10
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
# fetch full history so that git merge-base works
fetch-depth: 0
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
- name: Read performance delta
if: runner.os == 'Linux' && github.event_name == 'pull_request'
id: perf
uses: juliangruber/read-file-action@v1
uses: juliangruber/read-file-action@v1.1.5
with:
path: ./perf-delta.txt

Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
concurrency: ci-${{ github.ref }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: cachix/install-nix-action@v17
with:
extra_nix_config: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update-hash.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
update-hash:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
# This is needed to be able to push and trigger CI with that push
token: ${{ secrets.NIV_UPDATER_TOKEN }}
Expand All @@ -27,7 +27,7 @@ jobs:
cd nix
nix --extra-experimental-features nix-command shell -f . nix-update -c nix-update --version=skip drun
- name: Commit changes
uses: EndBug/add-and-commit@v7.5.0
uses: EndBug/add-and-commit@v9.1.1
with:
author_name: Nix hash updater
author_email: "<[email protected]>"
Expand Down