Compare commits

..

No commits in common. "d58f32726dd0276bd786182f85cbe1bebbf002df" and "fe166f9eb60f259c31a1973c0e78ac4a550d6a99" have entirely different histories.

5 changed files with 7 additions and 21 deletions

View file

@ -7,25 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
## [1.3.1] - 2023-05-23
### Fixed
- Action metadata looking in the wrong place for script (#12)
## [1.3.0] - 2023-05-19
### Changed
- Action now checks tool cache for installed version before querying Octokit (#5/#10)
## [1.2.0] - 2022-10-29 ## [1.2.0] - 2022-10-29
### Added ## Added
- `CAPSULE_LOG` is now set to 'none' for less verbose setup logs (#1/#2) - `CAPSULE_LOG` is now set to 'none' for less verbose setup logs (#1/#2)
### Fixed ## Fixed
- Release list now paginates the API to find old versions of Nextflow (#3) - Release list now paginates the API to find old versions of Nextflow (#3)
@ -49,9 +37,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- GitHub Actions workflow to test Nextflow installation and downstream usage - GitHub Actions workflow to test Nextflow installation and downstream usage
- Documentation and license files - Documentation and license files
[unreleased]: https://github.com/nf-core/setup-nextflow/compare/v1.3.1...HEAD [unreleased]: https://github.com/nf-core/setup-nextflow/compare/v1.2.0...HEAD
[1.3.1]: https://github.com/nf-core/setup-nextflow/compare/v1.3.0...v1.3.1
[1.3.0]: https://github.com/nf-core/setup-nextflow/compare/v1.2.0...v1.3.0
[1.2.0]: https://github.com/nf-core/setup-nextflow/compare/v1.1.1...v1.2.0 [1.2.0]: https://github.com/nf-core/setup-nextflow/compare/v1.1.1...v1.2.0
[1.1.0]: https://github.com/nf-core/setup-nextflow/compare/v1.0.1...v1.1.0 [1.1.0]: https://github.com/nf-core/setup-nextflow/compare/v1.0.1...v1.1.0
[1.0.1]: https://github.com/nf-core/setup-nextflow/compare/v1.0.0...v1.0.1 [1.0.1]: https://github.com/nf-core/setup-nextflow/compare/v1.0.0...v1.0.1

View file

@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- uses: nf-core/setup-nextflow@v1 - uses: nf-core/setup-nextflow@v1.2.0
- run: nextflow run ${GITHUB_WORKSPACE} - run: nextflow run ${GITHUB_WORKSPACE}
``` ```

View file

@ -16,7 +16,7 @@ inputs:
default: ${{ github.token }} default: ${{ github.token }}
runs: runs:
using: "node16" using: "node16"
main: "lib/src/main.js" main: "dist/index.js"
branding: branding:
icon: "shuffle" icon: "shuffle"
color: "green" color: "green"

2
package-lock.json generated
View file

@ -1,6 +1,6 @@
{ {
"name": "install-nextflow-action", "name": "install-nextflow-action",
"version": "1.3.0", "version": "1.2.0",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {

View file

@ -1,6 +1,6 @@
{ {
"name": "install-nextflow-action", "name": "install-nextflow-action",
"version": "1.3.0", "version": "1.2.0",
"description": "An action to install Nextflow into a GitHub Actions workflow and make it available for subsequent steps.", "description": "An action to install Nextflow into a GitHub Actions workflow and make it available for subsequent steps.",
"main": "lib/src/main.js", "main": "lib/src/main.js",
"scripts": { "scripts": {