summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/flake-update.yml4
-rw-r--r--.travis.yml17
2 files changed, 2 insertions, 19 deletions
diff --git a/.github/workflows/flake-update.yml b/.github/workflows/flake-update.yml
index b14dde7..8c842b1 100644
--- a/.github/workflows/flake-update.yml
+++ b/.github/workflows/flake-update.yml
@@ -14,12 +14,12 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Nix
- uses: cachix/install-nix-action@v18
+ uses: cachix/install-nix-action@v20
with:
extra_nix_config: |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
- name: Update flake.lock
- uses: DeterminateSystems/update-flake-lock@v15
+ uses: DeterminateSystems/update-flake-lock@v19
with:
pr-title: "Update flake.lock" # Title of PR to be created
# pr-labels: | # Labels to be set on the PR
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 798ccbd..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,17 +0,0 @@
-language: rust
-
-rust:
- - 1.33.0
- - 1.34.0
- - 1.35.0
- - 1.36.0
- - 1.37.0
- - stable
- - beta
-
-before_script:
- - rustup component add clippy
-script:
- - cargo clippy --all-targets --all-features -- -D warnings
- - cargo build
- - cargo test