guardian / riff-raff

The Guardian's deployment platform
Apache License 2.0
266 stars 18 forks source link

chore(deps): bump the all group with 1 update #1282

Closed dependabot[bot] closed 11 months ago

dependabot[bot] commented 11 months ago

Bumps the all group with 1 update: guardian/actions-riff-raff.

Release notes

Sourced from guardian/actions-riff-raff's releases.

v3.0.0

3.0.0 (2023-11-20)

  • Add a pull request comment with quick links to deploy with Riff-Raff (#85)

BREAKING CHANGES

A new required input githubToken has been added. This needs to be scoped with pull-requests: write permission.

Before (v2)

jobs:
  CI:
    timeout-minutes: 15
    runs-on: ubuntu-latest
    steps:
      - uses: guardian/actions-riff-raff@v2
        with:
          projectName: playground::my-application
          configPath: riff-raff.yaml
          contentDirectories: |
            static-site-assets:
              - static-site/dist
            api:
              - target/application.jar

After (v3)

jobs:
  CI:
    timeout-minutes: 15
    runs-on: ubuntu-latest
    permissions: 
      pull-requests: write # <- NEW!
    steps:
      - uses: guardian/actions-riff-raff@v3 # Note the version change
        with:
          githubToken: ${{ secrets.GITHUB_TOKEN }} # <- NEW!
          projectName: playground::my-application
          configPath: riff-raff.yaml
          contentDirectories: |
            static-site-assets:
              - static-site/dist
            api:
              - target/application.jar

v2.2.4

What's Changed

... (truncated)

Commits
  • bbfa351 Merge pull request #85 from guardian/aa/pr-comment
  • 65d6c91 fix: githubToken is required
  • adbca41 fix: Fail fast if githubToken not supplied
  • 34464fc docs: Use v3 in README
  • 58eb555 refactor: Don't import twice
  • 97d69f3 refactor: Remove redundant argument to getOctokit
  • 5d2b4cc refactor: Rename variable for clarity
  • 8a0175b refactor: Make commentOnPullRequest more single responsibility
  • 8583175 refactor: Simplify check for pull request
  • 28c5955 docs: Document inputs for PR commenting
  • 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 will merge this PR once CI passes on it, as requested by @akash1810.


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 show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
github-actions[bot] commented 11 months ago

Deploy build 3191 to CODE

All deployment options - [Deploy build 3191 to CODE](https://riffraff.gutools.co.uk/deployment/deployAgain?project=tools%3A%3Ariffraff&build=3191&stage=CODE&updateStrategy=MostlyHarmless&action=deploy) - [Deploy parts of build 3191 to CODE by previewing it first](https://riffraff.gutools.co.uk/preview/yaml?project=tools%3A%3Ariffraff&build=3191&stage=CODE&updateStrategy=MostlyHarmless)

From guardian/actions-riff-raff.