Skip to content

Commit

Permalink
Update github workflows actions to latest versions.
Browse files Browse the repository at this point in the history
Some of the github actions were deprecated, therefore we're simply
updating those to the latest versions in both `ci.yml` and
`release.yml`.
  • Loading branch information
abrightwell committed May 8, 2024
1 parent d9547a7 commit 0c8b0e5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Install Nix
uses: cachix/install-nix-action@v22
- uses: cachix/cachix-action@v12
uses: cachix/install-nix-action@v26
- uses: cachix/cachix-action@v14
with:
name: crunchy-public
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: nix flake check
run: nix flake check --print-build-logs --keep-going
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Add Crystal repos
run: curl -sSL https://crystal-lang.org/install.sh | sudo bash
Expand All @@ -35,7 +35,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Add Crystal repos
run: curl -sSL https://crystal-lang.org/install.sh | sudo bash
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
runs-on: macos-13
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install crystal
run: brew install crystal
Expand All @@ -98,7 +98,7 @@ jobs:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install crystal
run: brew install crystal
Expand Down

0 comments on commit 0c8b0e5

Please sign in to comment.