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: Squash warnings #2695

Merged
merged 13 commits into from
Oct 18, 2022
2 changes: 1 addition & 1 deletion .github/workflows/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- id: set-matrix
run: echo "::set-output name=matrix::$(scripts/workflows/audit-matrix.py)"
run: echo "matrix=$(scripts/workflows/audit-matrix.py)" >> $GITHUB_OUTPUT

test:
name: audit
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-frontend-canister.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
name: frontend-canister-up-to-date:required
steps:
- name: Check out the repo
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Set up
run: |
rustup target add wasm32-unknown-unknown
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/consistent-sources.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: cachix/install-nix-action@v13
- uses: cachix/install-nix-action@v18
with:
nix_path: nixpkgs=channel:nixos-21.05-small
- name: Install dependencies
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- id: set-matrix
run: echo "::set-output name=matrix::$(scripts/workflows/e2e-matrix.py)"
run: echo "matrix=$(scripts/workflows/e2e-matrix.py)" >> $GITHUB_OUTPUT

smoke:
runs-on: ${{ matrix.os }}
Expand All @@ -98,7 +98,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Download dfx binary
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: dfx-${{ matrix.os }}-rs-${{ matrix.rust }}
path: /usr/local/bin
Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Download dfx binary
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: dfx-${{ matrix.os }}-rs-${{ matrix.rust }}
path: /usr/local/bin
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: dfinity/conventional-pr-title-action@v2.2.3
- uses: dfinity/conventional-pr-title-action@v2.4.4
with:
success-state: Title follows the specification.
failure-state: Title does not follow the specification.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ jobs:
run: echo "VERSION=$GITHUB_REF_NAME" >> $GITHUB_ENV

- name: Download Artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: dfx-artifacts-${{ matrix.rust }}-${{ matrix.name }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-replica-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
grep -s "REPLICA_VERSION" $GITHUB_ENV

- name: install Nix
uses: cachix/install-nix-action@d64e0553100205688c0fb2fa16edb0fc8663c590 # https://github.com/cachix/install-nix-action/releases/tag/v17
uses: cachix/install-nix-action@v18
with:
nix_path: nixpkgs=channel:nixos-unstable

Expand Down