🛠️ GitHub Action for `fuelup` commands

Overview
Comments
  • Update args for fuelup v0.2.0

    Update args for fuelup v0.2.0

    Closes #24

    Note: Only to be merged after fuelup v0.2.0 is released!

    https://github.com/FuelLabs/fuelup/pull/77 is about to be merged with a new release of fuelup supporting the toolchain pattern (similar to rustup), which means fuelup install is now an invalid command.

    The new command to install the latest toolchain will be:

    fuelup toolchain install latest
    

    With support for nightly and stable later.

    opened by bingcicle 5
  • custom toolchains support

    custom toolchains support

    Closes #17

    Depends on https://github.com/FuelLabs/fuelup/pull/131

    Allows for you to do the following:

    • Use it like it worked before
    - name: Install Fuel toolchain
      uses: FuelLabs/[email protected]
      with:
        toolchain: latest
    
    • Create a custom toolchain with name my-toolchain and install specific components by specifying a comma-separated string (when version is unspecified, defaults to latest)
    - name: Install Fuel toolchain
      uses: FuelLabs/[email protected]
      with:
        name: my-toolchain
        components: fuel-core, forc
    
    • Create a custom toolchain with name my-toolchain and install specific components (at older versions)
    - name: Install Fuel toolchain
      uses: FuelLabs/[email protected]
      with:
        name: my-toolchain
        components: [email protected]
    
    • Mix both syntax, if somehow you need to test the latest forc against fuel-core at v0.9.5
    - name: Install Fuel toolchain
      uses: FuelLabs/[email protected]
      with:
        name: my-toolchain
        components: [email protected], forc
    
    opened by bingcicle 3
  • Bump actions/setup-node from 2.5.1 to 3.3.0

    Bump actions/setup-node from 2.5.1 to 3.3.0

    Bumps actions/setup-node from 2.5.1 to 3.3.0.

    Release notes

    Sourced from actions/setup-node's releases.

    Add support for lts/-n aliases

    In scope of this release we added support for lts/-n aliases, improve logic for current, latest and node aliases to handle them from toolcache, update ncc package.

    Support of lts/-n aliases

    steps:
    - uses: actions/checkout@v3
    - uses: actions/setup-node@v3
      with:
        node-version: lts/-1
    - run: npm ci
    - run: npm test
    

    Minor improvements

    Add current, node, latest aliases

    In scope of this release we added new aliases to install the latest Node.js version. actions/setup-node#483

    steps:
    - uses: actions/checkout@v3
    - uses: actions/setup-node@v3
      with:
        node-version: current
    - run: npm ci
    - run: npm test
    

    Update actions/cache version to 2.0.2

    In scope of this release we updated actions/cache package as the new version contains fixes related to GHES 3.5 (actions/setup-node#460)

    Add caching support on GHES 3.5

    In scope of this release we added support for caching from GHES 3.5 and fixed download issue for files > 2GB during restore. Besides, we updated actions/cache dependency to 2.0.0 version.

    v3.0.0

    In scope of this release we changed version of the runtime Node.js for the setup-node action and updated package-lock.json file to v2.

    Breaking Changes

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies github_actions 
    opened by dependabot[bot] 3
  • Create a github action for `fuelup` installation in order to have a smoother CI

    Create a github action for `fuelup` installation in order to have a smoother CI

    Summary

    1. The user must specify the curl command to fetch and install the script
    2. They must set the PATH via $GITHUB_PATH (instead of using export) e.g. echo "${HOME}/.fuelup/bin:${PATH}" >> $GITHUB_PATH

    In order for forc and forc-fmt (among other plugins - not needed for CI) to be usable.

    There should be a GitHub action created that does this for the user so that they only need to specify the action to use and everything else is sorted out behind the scenes for them.

    This

    1. Cuts down on installation and compiling of forc and forc-fmt by approximately 12 minutes
    2. Cuts down on user error when setting this up themselves

    Note: If possible, this action should allow the user to specify the version they want to use rather than fetching the latest release.

    enhancement good first issue ci 
    opened by Braqzen 2
  • build(deps-dev): bump @types/node from 18.11.13 to 18.11.15

    build(deps-dev): bump @types/node from 18.11.13 to 18.11.15

    Bumps @types/node from 18.11.13 to 18.11.15.

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 1
  • build(deps-dev): bump @types/node from 18.11.13 to 18.11.14

    build(deps-dev): bump @types/node from 18.11.13 to 18.11.14

    Bumps @types/node from 18.11.13 to 18.11.14.

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 1
  • build(deps-dev): bump @typescript-eslint/parser from 5.46.0 to 5.46.1

    build(deps-dev): bump @typescript-eslint/parser from 5.46.0 to 5.46.1

    Bumps @typescript-eslint/parser from 5.46.0 to 5.46.1.

    Release notes

    Sourced from @​typescript-eslint/parser's releases.

    v5.46.1

    5.46.1 (2022-12-12)

    Note: Version bump only for package @​typescript-eslint/typescript-eslint

    Changelog

    Sourced from @​typescript-eslint/parser's changelog.

    5.46.1 (2022-12-12)

    Note: Version bump only for package @​typescript-eslint/parser

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 1
  • build(deps-dev): bump @typescript-eslint/parser from 5.42.1 to 5.43.0

    build(deps-dev): bump @typescript-eslint/parser from 5.42.1 to 5.43.0

    Bumps @typescript-eslint/parser from 5.42.1 to 5.43.0.

    Release notes

    Sourced from @​typescript-eslint/parser's releases.

    v5.43.0

    5.43.0 (2022-11-14)

    Bug Fixes

    • eslint-plugin: [no-shadow] handle false positives on generics and parameters (#5902) (769e8c8)
    • eslint-plugin: [promise-function-async] handle keyword token (#5907) (f25a94f)

    Features

    • eslint-plugin: [consistent-type-imports] support fixing to inline types (#5050) (75dcdf1)
    • eslint-plugin: [naming-convention] add support for "override" and "async" modifiers (#5310) (#5610) (c759da1)
    • eslint-plugin: [prefer-optional-chain] support suggesting !foo || !foo.bar as a valid match for the rule (#5594) (923d486)
    Changelog

    Sourced from @​typescript-eslint/parser's changelog.

    5.43.0 (2022-11-14)

    Note: Version bump only for package @​typescript-eslint/parser

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 1
  • build(deps-dev): bump @types/node from 18.11.4 to 18.11.6

    build(deps-dev): bump @types/node from 18.11.4 to 18.11.6

    Bumps @types/node from 18.11.4 to 18.11.6.

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 1
  • build(deps-dev): bump @types/node from 18.11.4 to 18.11.5

    build(deps-dev): bump @types/node from 18.11.4 to 18.11.5

    Bumps @types/node from 18.11.4 to 18.11.5.

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 1
  • build(deps-dev): bump @types/node from 18.8.5 to 18.11.4

    build(deps-dev): bump @types/node from 18.8.5 to 18.11.4

    Bumps @types/node from 18.8.5 to 18.11.4.

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 1
  • build(deps-dev): bump prettier from 2.8.1 to 2.8.2

    build(deps-dev): bump prettier from 2.8.1 to 2.8.2

    Bumps prettier from 2.8.1 to 2.8.2.

    Release notes

    Sourced from prettier's releases.

    2.8.2

    🔗 Changelog

    Changelog

    Sourced from prettier's changelog.

    2.8.2

    diff

    Don't lowercase link references (#13155 by @​DerekNonGeneric & @​fisker)

    <!-- Input -->
    We now don't strictly follow the release notes format suggested by [Keep a Changelog].
    

    <!-- Prettier 2.8.1 --> We now don't strictly follow the release notes format suggested by Keep a Changelog.

    <!-- ^^^^^^^^^^^^^^^^^^ lowercased -->

    <!-- Prettier 2.8.2 --> <Same as input>

    Preserve self-closing tags (#13691 by @​dcyriller)

    {{! Input }}
    <div />
    <div></div>
    <custom-component />
    <custom-component></custom-component>
    <i />
    <i></i>
    <Component />
    <Component></Component>
    

    {{! Prettier 2.8.1 }} <div></div> <div></div> <custom-component></custom-component> <custom-component></custom-component> <i></i> <i></i> <Component /> <Component />

    {{! Prettier 2.8.2 }} </tr></table>

    ... (truncated)

    Commits
    • ac88438 Release 2.8.2
    • aaf9190 Fix comments after directive (#14081)
    • 9e09a78 Stop inserting space in LESS property access (#14103)
    • 0c5d4f3 Fix removing commas from function arguments in maps (#14089)
    • b77d912 ember / glimmer: Preserve self-closing tags (#13691)
    • cf36209 Handlebars: Add tests for {{! prettier-ignore}} (#13693)
    • f8e1ad8 Add parens to head of ExpressionStatement instead of whole statement (#14077)
    • 8034bad Build(deps): Bump json5 from 2.2.0 to 2.2.3 in /scripts/release (#14104)
    • 31d4010 Build(deps): Bump json5 from 2.2.1 to 2.2.3 in /website (#14101)
    • 41cee06 Do not change case of property name if inside a variable declaration in LESS ...
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 0
  • build(deps-dev): bump eslint-plugin-jest from 27.2.0 to 27.2.1

    build(deps-dev): bump eslint-plugin-jest from 27.2.0 to 27.2.1

    Bumps eslint-plugin-jest from 27.2.0 to 27.2.1.

    Release notes

    Sourced from eslint-plugin-jest's releases.

    v27.2.1

    27.2.1 (2023-01-06)

    Bug Fixes

    • valid-expect-in-promise: handle sparse arrays (#1325) (21e72c9)
    Changelog

    Sourced from eslint-plugin-jest's changelog.

    27.2.1 (2023-01-06)

    Bug Fixes

    • valid-expect-in-promise: handle sparse arrays (#1325) (21e72c9)
    Commits
    • 6f4f84c chore(release): 27.2.1 [skip ci]
    • 21e72c9 fix(valid-expect-in-promise): handle sparse arrays (#1325)
    • 35b0e6f docs: update eslint-doc-generator (#1324)
    • d566516 chore(deps): update danger/danger-js action to v11.2.1 (#1321)
    • f3cb13b refactor: use Object.fromEntries to build rule config maps (#1320)
    • 3718e82 chore(deps): update dependency eslint-remote-tester-repositories to v1 (#1319)
    • 6a287c0 docs: update rule name in changelog (#1317)
    • See full diff in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 0
  • build(deps): bump actions/setup-node from 3.5.1 to 3.6.0

    build(deps): bump actions/setup-node from 3.5.1 to 3.6.0

    Bumps actions/setup-node from 3.5.1 to 3.6.0.

    Release notes

    Sourced from actions/setup-node's releases.

    Add Support for Nightly, Canary and RC builds for Node.js

    In scope of this release we added support to download nightly, rc (actions/setup-node#611) and canary (actions/setup-node#619) Node.js distributions.

    For nightly versions:

    jobs:
      build:
        runs-on: ubuntu-latest
        name: Node sample
        steps:
          - uses: actions/checkout@v3
          - uses: actions/setup-node@v3
            with:
              node-version: '16-nightly'
          - run: npm ci
          - run: npm test
    

    For canary versions:

    jobs:
      build:
        runs-on: ubuntu-latest
        name: Node sample
        steps:
          - uses: actions/checkout@v3
          - uses: actions/setup-node@v3
            with:
              node-version: '16-v8-canary’
          - run: npm ci
          - run: npm test
    

    For rc versions:

    jobs:
      build:
        runs-on: ubuntu-latest
        name: Node sample
        steps:
          - uses: actions/checkout@v3
          - uses: actions/setup-node@v3
            with:
              node-version: '16.0.0-rc.1’
          - run: npm ci
          - run: npm test
    

    ... (truncated)

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies github_actions 
    opened by dependabot[bot] 0
Releases(v0.3.0)
  • v0.3.0(Sep 6, 2022)

    What's Changed

    • build(deps-dev): bump @types/jest from 28.1.6 to 28.1.7 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/75
    • build(deps-dev): bump eslint-plugin-jest from 26.8.3 to 26.8.7 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/76
    • build(deps-dev): bump @typescript-eslint/parser from 5.33.1 to 5.34.0 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/79
    • build(deps-dev): bump @types/node from 18.7.6 to 18.7.11 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/80
    • build(deps-dev): bump @types/node from 18.7.11 to 18.7.13 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/81
    • build(deps-dev): bump @types/jest from 28.1.7 to 28.1.8 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/82
    • build(deps-dev): bump @typescript-eslint/parser from 5.34.0 to 5.35.1 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/83
    • build(deps-dev): bump typescript from 4.7.4 to 4.8.2 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/84
    • build(deps-dev): bump eslint-plugin-jest from 26.8.7 to 27.0.1 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/85
    • build(deps-dev): bump eslint from 8.22.0 to 8.23.0 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/86
    • build(deps-dev): bump @typescript-eslint/parser from 5.35.1 to 5.36.1 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/87
    • build(deps-dev): bump @types/node from 18.7.13 to 18.7.14 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/88
    • support nightly by @bingcicle in https://github.com/FuelLabs/action-fuel-toolchain/pull/89
    • docs: Update README with info on nightly by @bingcicle in https://github.com/FuelLabs/action-fuel-toolchain/pull/91
    • release: bump v0.3.0 by @bingcicle in https://github.com/FuelLabs/action-fuel-toolchain/pull/92

    Full Changelog: https://github.com/FuelLabs/action-fuel-toolchain/compare/v0.2.0...v0.3.0

    Source code(tar.gz)
    Source code(zip)
  • v0.2.0(Aug 19, 2022)

    What's Changed

    • build(deps-dev): bump @typescript-eslint/parser from 5.29.0 to 5.30.0 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/32
    • build(deps-dev): bump jest from 28.1.1 to 28.1.2 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/33
    • build(deps-dev): bump @typescript-eslint/parser from 5.30.0 to 5.30.2 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/34
    • build(deps-dev): bump @types/node from 18.0.0 to 18.0.1 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/35
    • build(deps-dev): bump eslint from 8.18.0 to 8.19.0 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/37
    • build(deps-dev): bump @typescript-eslint/parser from 5.30.2 to 5.30.5 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/38
    • build(deps-dev): bump @types/node from 18.0.1 to 18.0.3 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/39
    • build(deps): bump actions/setup-node from 3.3.0 to 3.4.0 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/40
    • build(deps-dev): bump @typescript-eslint/parser from 5.30.5 to 5.30.6 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/41
    • build(deps): bump actions/setup-node from 3.4.0 to 3.4.1 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/43
    • build(deps-dev): bump @types/node from 18.0.3 to 18.0.4 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/45
    • build(deps-dev): bump jest from 28.1.2 to 28.1.3 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/42
    • build(deps-dev): bump ts-jest from 28.0.5 to 28.0.6 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/44
    • build(deps-dev): bump eslint-plugin-jest from 26.5.3 to 26.6.0 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/46
    • build(deps-dev): bump @types/node from 18.0.4 to 18.0.6 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/47
    • build(deps-dev): bump eslint from 8.19.0 to 8.20.0 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/48
    • build(deps-dev): bump ts-jest from 28.0.6 to 28.0.7 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/49
    • build(deps-dev): bump @typescript-eslint/parser from 5.30.6 to 5.30.7 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/50
    • build(deps-dev): bump eslint-plugin-github from 4.3.6 to 4.3.7 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/51
    • build(deps-dev): bump @types/node from 18.0.6 to 18.6.1 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/52
    • build(deps-dev): bump @typescript-eslint/parser from 5.30.7 to 5.31.0 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/53
    • build(deps-dev): bump @types/node from 18.6.1 to 18.6.2 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/54
    • build(deps-dev): bump @types/node from 18.6.2 to 18.6.3 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/55
    • build(deps-dev): bump eslint-plugin-jest from 26.6.0 to 26.7.0 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/56
    • build(deps-dev): bump eslint from 8.20.0 to 8.21.0 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/57
    • build(deps-dev): bump @typescript-eslint/parser from 5.31.0 to 5.32.0 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/58
    • build(deps-dev): bump @types/node from 18.6.3 to 18.6.4 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/59
    • build(deps-dev): bump eslint-plugin-jest from 26.7.0 to 26.8.0 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/60
    • build(deps-dev): bump eslint-plugin-jest from 26.8.0 to 26.8.2 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/62
    • build(deps-dev): bump @types/node from 18.6.4 to 18.6.5 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/63
    • build(deps-dev): bump @typescript-eslint/parser from 5.32.0 to 5.33.0 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/64
    • build(deps): bump @actions/core from 1.9.0 to 1.9.1 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/61
    • build(deps-dev): bump @types/node from 18.6.5 to 18.7.1 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/65
    • build(deps-dev): bump @types/node from 18.7.1 to 18.7.2 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/66
    • build(deps-dev): bump eslint from 8.21.0 to 8.22.0 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/68
    • build(deps-dev): bump @types/node from 18.7.2 to 18.7.4 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/69
    • build(deps-dev): bump ts-jest from 28.0.7 to 28.0.8 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/70
    • build(deps-dev): bump eslint-plugin-jest from 26.8.2 to 26.8.3 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/71
    • build(deps-dev): bump @types/node from 18.7.4 to 18.7.6 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/74
    • build(deps-dev): bump @typescript-eslint/parser from 5.33.0 to 5.33.1 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/73
    • custom toolchains support by @bingcicle in https://github.com/FuelLabs/action-fuel-toolchain/pull/67
    • bump v0.2.0 by @bingcicle in https://github.com/FuelLabs/action-fuel-toolchain/pull/72

    Full Changelog: https://github.com/FuelLabs/action-fuel-toolchain/compare/v0.1.1...v0.2.0

    Source code(tar.gz)
    Source code(zip)
  • v0.1.1(Jun 24, 2022)

    What's Changed

    • build(deps-dev): bump prettier from 2.6.2 to 2.7.0 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/18
    • build(deps-dev): bump @typescript-eslint/parser from 5.27.1 to 5.28.0 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/19
    • build(deps-dev): bump ts-jest from 28.0.4 to 28.0.5 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/20
    • build(deps-dev): bump @types/node from 17.0.42 to 17.0.44 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/21
    • build(deps): bump @actions/core from 1.8.2 to 1.9.0 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/22
    • build(deps-dev): bump @types/node from 17.0.44 to 18.0.0 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/25
    • build(deps-dev): bump prettier from 2.7.0 to 2.7.1 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/26
    • Delete CODEOWNERS by @adlerjohn in https://github.com/FuelLabs/action-fuel-toolchain/pull/23
    • build(deps-dev): bump typescript from 4.7.3 to 4.7.4 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/27
    • build(deps-dev): bump eslint from 8.17.0 to 8.18.0 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/28
    • build(deps-dev): bump @typescript-eslint/parser from 5.28.0 to 5.29.0 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/29
    • Update args for fuelup v0.2.0 by @binggh in https://github.com/FuelLabs/action-fuel-toolchain/pull/30
    • bump v0.1.1 by @binggh in https://github.com/FuelLabs/action-fuel-toolchain/pull/31

    New Contributors

    • @binggh made their first contribution in https://github.com/FuelLabs/action-fuel-toolchain/pull/30

    Full Changelog: https://github.com/FuelLabs/action-fuel-toolchain/compare/v0.1.0...v0.1.1

    Source code(tar.gz)
    Source code(zip)
  • v0.1.0(Jun 13, 2022)

    What's Changed

    • Bump actions/checkout from 2 to 3 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/4
    • Bump actions/upload-artifact from 2 to 3 by @dependabot in https://github.com/FuelLabs/action-fuel-toolchain/pull/3
    • Release v1 by @Br1ght0ne in https://github.com/FuelLabs/action-fuel-toolchain/pull/10
    • Initial package.json cleanup by @adlerjohn in https://github.com/FuelLabs/action-fuel-toolchain/pull/11
    • Check if forc is in PATH after running action by @Br1ght0ne in https://github.com/FuelLabs/action-fuel-toolchain/pull/12
    • Use rust-toolchain action as base by @adlerjohn in https://github.com/FuelLabs/action-fuel-toolchain/pull/13
    • Always run dist check ci. by @adlerjohn in https://github.com/FuelLabs/action-fuel-toolchain/pull/15
    • Update readme. by @adlerjohn in https://github.com/FuelLabs/action-fuel-toolchain/pull/14
    • Add branding by @adlerjohn in https://github.com/FuelLabs/action-fuel-toolchain/pull/16

    New Contributors

    • @dependabot made their first contribution in https://github.com/FuelLabs/action-fuel-toolchain/pull/4
    • @Br1ght0ne made their first contribution in https://github.com/FuelLabs/action-fuel-toolchain/pull/10
    • @adlerjohn made their first contribution in https://github.com/FuelLabs/action-fuel-toolchain/pull/11

    Full Changelog: https://github.com/FuelLabs/action-fuel-toolchain/commits/v0.1.0

    Source code(tar.gz)
    Source code(zip)
Owner
Fuel Labs
Fuel Labs is building Fuel, the worlds fastest modular execution layer.
Fuel Labs
Hemsida för personer i Sverige som kan och vill erbjuda boende till människor på flykt

Getting Started with Create React App This project was bootstrapped with Create React App. Available Scripts In the project directory, you can run: np

null 4 May 3, 2022
Kurs-repo för kursen Webbserver och Databaser

Webbserver och databaser This repository is meant for CME students to access exercises and codealongs that happen throughout the course. I hope you wi

null 14 Jan 3, 2023
All terminal commands in one place (you can Contribute to it by putting latest commands and adding Readme)

Terminal-Commands All basic terminal commands in one place Show some ❤ by some repositories You can contribute to this readme If you to contribute wit

Shehzad Iqbal 7 Dec 15, 2022
GitHub Action that posts the report in a comment on a GitHub Pull Request from coverage data generated by nyc (istanbul)

GitHub Action: Report NYC coverage GitHub Action that posts the report in a comment on a GitHub Pull Request from coverage data generated by nyc (ista

Sid 16 Nov 23, 2022
A GitHub action to submit your dependency graph from your Mill build to GitHub.

Mill Dependency Submission A GitHub action to submit your dependency graph from your Mill build to GitHub via their Dependency Submission API. The mai

Chris Kipp 6 Dec 15, 2022
A GitHub Action that allows to debug GitHub workflows using VS Code.

VS Code Server Action A GitHub Action that allows to debug GitHub workflows using VS Code. Failing CI builds can be annoying especially since we don't

stateful 18 Dec 23, 2022
A github action that provides detailed bundle analysis on PRs for next.js apps

Next.js Bundle Analysis Github Action Analyzes each PR's impact on your next.js app's bundle size and displays it using a comment. Optionally supports

HashiCorp 369 Dec 27, 2022
A custom action for setting GitHub Workflow environment variables with YAML configuration files.

yaml-env-action - A custom action for setting GitHub Workflow environment variables with YAML configuration files. Introduction yaml-env-action is a c

Piper Dougherty 3 Dec 13, 2022
Setup-graalvm - GitHub Action for setting up GraalVM CE.

GitHub Action for GraalVM This GitHub action sets up GraalVM Community Edition and GraalVM components such as Native Image and GraalVM languages. Key

GraalVM 105 Jan 2, 2023
A GitHub Action for pushing to a repo.

action-gh-push A GitHub Action for pushing to a repo. ?? Usage Below is a simple example of step.if tag gating name: ci on: push jobs: build:

迷渡 6 Feb 15, 2022
A GitHub Action to cache your workload to a Google Cloud Storage bucket.

Google Cloud Storage Cache Action GitHub already provides an awesome action to cache your workload to Azure's servers hosted in United States. However

MansaGroup 9 Dec 15, 2022
🤖 GitHub Action which creates Issues from comments in your code

todo-issue[action] Disclosure Huge thanks to JasonEtco! After he decided to shut down his todo[bot] I've looked around for alternatives but decided to

Julian 17 Dec 11, 2022
GitHub action to install Foundry

foundry-toolchain Action This GitHub action installs Foundry. Example workflow on: [push] name: test jobs: check: name: Foundry project ru

Bjerg 128 Jan 5, 2023
Github action to parse OWNERS files and outputs random reviewers

Get Owners Github Action Do you want to have all the approvers and reviewers without having strange scripts in your actions? Do you want to have rando

Ugo Palatucci 3 Oct 22, 2022
GitHub action code for VMware Image Builder (VIB).

VMware Image Builder Overview This GitHub Action allows to interact with the VMware Image Builder service from VMware, a.k.a. VIB. VIB is a SaaS servi

VMware  Labs 10 Dec 22, 2022
⚙️ A GitHub Action to push a feed item to RSS3 network

RSS3 Github Action Update a users feed to reflect changes in a Github Repository. Setup Have a copy of your private key Add an environment secret to y

null 5 Apr 26, 2022
🚀 A GitHub action to publish a new release of the repository

Create a JavaScript Action using TypeScript Use this template to bootstrap the creation of a TypeScript action. ?? This template includes compilation

Clicampo 3 Nov 1, 2022
💅 A ready-to-go with a well-thought-out structure Electron app boilerplate with ReactJS, TypeScript, CSS / SASS modules, SWC, Eslint, Prettier, GitHub Action releases and more.

Electron App ??  A ready-to-go with a well-thought-out structure Electron app boilerplate with ReactJS, TypeScript, CSS / SASS modules, SWC, Eslint, P

Dalton Menezes 155 Dec 29, 2022
This GitHub Action will setup a Nushell environment for you.

setup-nu 中文说明 This GitHub Action will setup a Nushell environment for you. Usage Examples In most cases you need to specify the version of Nushell to

Justin Ma 15 Dec 30, 2022