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

Bump various CI dependencies #375

Merged
merged 5 commits into from
Mar 13, 2024
Merged
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
30 changes: 15 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ jobs:
uses: actions/checkout@v4

- name: Install Nix
uses: cachix/install-nix-action@v22
uses: cachix/install-nix-action@v26
with:
extra_nix_config: |
## Access token to avoid triggering GitHub's rate limiting.
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}

- name: Setup Nix caches
uses: cachix/cachix-action@v12
uses: cachix/cachix-action@v14
with:
name: tweag-cooked-validators
## This auth token will give write access to the cache, meaning that
Expand All @@ -52,14 +52,14 @@ jobs:
uses: actions/checkout@v4

- name: Install Nix
uses: cachix/install-nix-action@v22
uses: cachix/install-nix-action@v26
with:
extra_nix_config: |
## Access token to avoid triggering GitHub's rate limiting.
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}

- name: Setup Nix caches
uses: cachix/cachix-action@v12
uses: cachix/cachix-action@v14
with:
name: tweag-cooked-validators
## This auth token will give write access to the cache, meaning that
Expand All @@ -84,22 +84,22 @@ jobs:
uses: actions/checkout@v4

- name: Install Nix
uses: cachix/install-nix-action@v22
uses: cachix/install-nix-action@v26
with:
extra_nix_config: |
## Access token to avoid triggering GitHub's rate limiting.
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}

- name: Setup Nix caches
uses: cachix/cachix-action@v12
uses: cachix/cachix-action@v14
with:
name: tweag-cooked-validators
## No auth token: read only cache.

## Example from
## https://github.com/actions/cache/blob/ac25611caef967612169ab7e95533cf932c32270/examples.md#haskell---cabal
- name: Accessing the Cabal cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cabal/packages
Expand Down Expand Up @@ -157,7 +157,7 @@ jobs:
'

- name: Upload build and test outputs
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: cooked-validators-checks
path: |
Expand All @@ -172,7 +172,7 @@ jobs:

steps:
- name: Access build and test outputs
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: cooked-validators-checks

Expand Down Expand Up @@ -211,22 +211,22 @@ jobs:
uses: actions/checkout@v4

- name: Install Nix
uses: cachix/install-nix-action@v22
uses: cachix/install-nix-action@v26
with:
extra_nix_config: |
## Access token to avoid triggering GitHub's rate limiting.
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}

- name: Setup Nix caches
uses: cachix/cachix-action@v12
uses: cachix/cachix-action@v14
with:
name: tweag-cooked-validators
## No auth token: read only cache.

## Example from
## https://github.com/actions/cache/blob/ac25611caef967612169ab7e95533cf932c32270/examples.md#haskell---cabal
- name: Accessing the Cabal cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cabal/packages
Expand Down Expand Up @@ -254,7 +254,7 @@ jobs:
'

- name: Upload documentation as artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: documentation
path: ./docs
Expand All @@ -277,14 +277,14 @@ jobs:
uses: actions/checkout@v4

- name: Install Nix
uses: cachix/install-nix-action@v22
uses: cachix/install-nix-action@v26
with:
extra_nix_config: |
## Access token to avoid triggering GitHub's rate limiting.
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}

- name: Setup Nix caches
uses: cachix/cachix-action@v12
uses: cachix/cachix-action@v14
with:
name: tweag-cooked-validators
## This auth token will give write access to the cache, meaning that
Expand Down
Loading