Skip to content

Commit

Permalink
chore: Squash warnings (#2695)
Browse files Browse the repository at this point in the history
# Description
New warnings have appeared in GitHub CI.  Some were addressed in #2693 .  This addresses more of them.
  • Loading branch information
bitdivine authored Oct 18, 2022
1 parent 15ab3c0 commit 2149b05
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
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

0 comments on commit 2149b05

Please sign in to comment.