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

Update gh minor #2974

Merged
merged 1 commit into from
Jul 3, 2023
Merged

Update gh minor #2974

merged 1 commit into from
Jul 3, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 27, 2023

Mend Renovate

This PR contains the following updates:

Package Type Update Change
Azure/login action patch v1.4.3 -> v1.4.7
Azure/login action minor v1.3.0 -> v1.4.7
actions/checkout action minor v3.1.0 -> v3.5.3
actions/checkout action minor v3.3.0 -> v3.5.3
actions/checkout action patch v3.5.0 -> v3.5.3
actions/checkout action patch v3.5.2 -> v3.5.3
actions/download-artifact action patch v3.0.0 -> v3.0.2
actions/setup-dotnet action minor v3.0.3 -> v3.2.0
actions/setup-dotnet action minor v2.0.0 -> v2.1.1
actions/setup-node action minor v3.0.0 -> v3.6.0
actions/stale action minor v5.0.0 -> v5.2.1
actions/upload-artifact action minor v3.0.0 -> v3.1.2
azure/webapps-deploy action patch v2.2.4 -> v2.2.10
crazy-max/ghaction-import-gpg action minor v5.2.0 -> v5.3.0
docker/build-push-action action minor v3.2.0 -> v3.3.1
peter-evans/close-issue action minor v2.0.0 -> v2.2.0

Release Notes

Azure/login (Azure/login)

v1.4.7

Compare Source

v1.4.6: [BUG FIX] Version pattern regex update

Compare Source

v1.4.5: Handling id-token error and Node version upgradation

Compare Source

In this release, a separate error will be thrown if id-token permissions are not set in the workflow for OIDC login. Also upgraded the Node version to 16.

v1.4.4: Handling warnings and added OIDC promotional note.

Compare Source

Error handling and minor doc changes.

actions/checkout (actions/checkout)

v3.5.3

Compare Source

v3.5.2

Compare Source

v3.5.1

Compare Source

v3.5.0

Compare Source

v3.4.0

Compare Source

v3.3.0

Compare Source

v3.2.0

Compare Source

actions/download-artifact (actions/download-artifact)

v3.0.2

Compare Source

  • Bump @actions/artifact to v1.1.1 - https://github.com/actions/download-artifact/pull/195
  • Fixed a bug in Node16 where if an HTTP download finished too quickly (<1ms, e.g. when it's mocked) we attempt to delete a temp file that has not been created yet actions/toolkit#​1278

v3.0.1

Compare Source

actions/setup-dotnet (actions/setup-dotnet)

v3.2.0

Compare Source

What's Changed

In scope of this minor release, the ability to cache the NuGet global-packages folder was added in https://github.com/actions/setup-dotnet/pull/303 by @​nogic1008

For caching, the action uses the @​toolkit/cache library under the hood, which in turn allows getting rid of configuring the @​actions/cache action separately.

Such input parameters as cache and cache-dependency-path were added. The cache input is optional, and caching is turned off by default, cache-dependency-path is used to specify the path to a dependency file - packages.lock.json.

Example of use-case:

- uses: actions/setup-dotnet@v3
  with:
    dotnet-version: 6.x
    cache: true
    cache-dependency-path: subdir/packages.lock.json

More details can be found in the action's documentation.

Full Changelog: actions/setup-dotnet@v3...v3.2.0

v3.1.0

Compare Source

What's Changed

This minor release includes the following new features:

- uses: actions/setup-dotnet@v3
  with:
    dotnet-version: '7.0.2xx'

More details about the new syntax can be found here.

It also contains several infrastructure changes:

New Contributors

Full Changelog: actions/setup-dotnet@v3...v3.1.0

actions/setup-node (actions/setup-node)

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

Compare Source

In scope of this release we added support to download nightly, rc (https://github.com/actions/setup-node/pull/611) and canary (https://github.com/actions/setup-node/pull/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

Note: For more examples please refer to documentation.

Besides, we added the following changes as:

v3.5.1: Update @​actions/core and Print Node, Npm, Yarn versions

Compare Source

In scope of this release we updated actions/core to 1.10.0. Moreover, we added logic to print Nodejs, Npm, Yarn versions after installation.

v3.5.0: Add support for engines.node and Volta

Compare Source

In scope of this release we add support for engines.node. The action will be able to grab the version form package.json#engines.node. https://github.com/actions/setup-node/pull/485. Moreover, we added support for Volta

Besides, we updated @​actions/core to 1.9.1 and @​actions/cache to 3.0.4

v3.4.1: Fix pnpm output and node-version output issues

Compare Source

In scope of this release we fixed bugs related to the pnpm 7.5.1 output issue from pnpm store path https://github.com/actions/setup-node/pull/545. Moreover we fixed the issue with falling on node-version output https://github.com/actions/setup-node/pull/540.

v3.4.0: Add support for asdf format and update actions/cache version to 3.0.0

Compare Source

In scope of this release we updated actions/cache package as the new version contains fixes for caching error handling. Moreover, we added support for asdf format as Node.js version file https://github.com/actions/setup-node/pull/373. Besides, we introduced new output node-version and added npm-shrinkwrap.json to dependency file patterns: https://github.com/actions/setup-node/pull/439

v3.3.0: Add support for lts/-n aliases

Compare Source

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

v3.2.0: Add current, node, latest aliases

Compare Source

In scope of this release we added new aliases to install the latest Node.js version. https://github.com/actions/setup-node/pull/483

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

v3.1.1: Update actions/cache version to 2.0.2

Compare Source

In scope of this release we updated actions/cache package as the new version contains fixes related to GHES 3.5 (https://github.com/actions/setup-node/pull/460)

v3.1.0: Add caching support on GHES 3.5

Compare Source

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.

actions/stale (actions/stale)

v5.2.1: Update @​actions/core for v5

Compare Source

In scope of this release we updated actions/core to 1.10.0 for v5: https://github.com/actions/stale/pull/958

v5.2.0

Compare Source

Features:
New option include-only-assigned enables users to process only issues/PRs that are already assigned. If there is no assignees and this option is set, issue will not be processed per: issue/596

Fixes:
Fix date comparison edge case PR/816

Dependency Updates:
PR/812

v5.1.1: Fix issue when days-before-close is more than days-before-stale

Compare Source

fixes a bug introduced in #​717

fixed in #​775

v5.1.1: Fix issue when days-before-close is more than days-before-stale

Compare Source

fixes a bug introduced in #​717

fixed in #​775

v5.1.0

Compare Source

[5.1.0]

Don't process stale issues right after they're marked stale
Add close-issue-reason option #​764#​772
Various dependabot/dependency updates

actions/upload-artifact (actions/upload-artifact)

v3.1.2

Compare Source

  • Update all @actions/* NPM packages to their latest versions- #​374
  • Update all dev dependencies to their most recent versions - #​375

v3.1.1

Compare Source

  • Update actions/core package to latest version to remove set-output deprecation warning #​351

v3.1.0

Compare Source

What's Changed
azure/webapps-deploy (azure/webapps-deploy)

v2.2.10: Releases 2.2.10

Compare Source

Adding option for bearer auth for scm uri. https://github.com/Azure/webapps-deploy/pull/325

v2.2.9

Compare Source

Updated node modules.

v2.2.7

Compare Source

  • Trimming Commit Message.
  • Improving the error message on Deployment failures.

v2.2.6: Release 2.2.6

Compare Source

  • Fix for the warning: DeprecationWarning: Invalid 'main' field in '/home/runner/work/actions/azure/webapps-deploy/v2/node_modules/actions-secret-parser/package.json' of 'lib/index.js'. Please either fix that or report it to the module author

  • Support to add resource group as optional parameter in the github action.

v2.2.5: Minor release 2.2.5

Compare Source

crazy-max/ghaction-import-gpg (crazy-max/ghaction-import-gpg)

v5.3.0

Compare Source

Full Changelog: crazy-max/ghaction-import-gpg@v5.2.0...v5.3.0

docker/build-push-action (docker/build-push-action)

v3.3.1

Compare Source

Full Changelog: docker/build-push-action@v3.3.0...v3.3.1

v3.3.0

Compare Source

Note

Buildx v0.10 enables support for a minimal SLSA Provenance attestation, which requires support for OCI-compliant multi-platform images. This may introduce issues with registry and runtime support (e.g. Google Cloud Run and AWS Lambda). You can optionally disable the default provenance attestation functionality using provenance: false.

Full Changelog: docker/build-push-action@v3.2.0...v3.3.0

peter-evans/close-issue (peter-evans/close-issue)

v2.2.0: Close Issue v2.2.0

Compare Source

⭐ Adds input labels, a comma or newline separated list of labels to apply.

What's Changed
New Contributors

Full Changelog: peter-evans/close-issue@v2.1.1...v2.2.0

v2.1.1: Close Issue v2.1.1

Compare Source

⚙️ Bumps @actions/core to transition away from deprecated runner commands.

What's Changed

Full Changelog: peter-evans/close-issue@v2.1.0...v2.1.1

v2.1.0: Close Issue v2.1.0

Compare Source

What's Changed

New Contributors

Full Changelog: peter-evans/close-issue@v2.0.0...v2.1.0


Configuration

📅 Schedule: Branch creation - "every weekend" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot changed the title chore(deps): update gh minor Update gh minor May 30, 2023
@renovate renovate bot force-pushed the renovate/gh-minor branch 11 times, most recently from dc776fa to 5a6912c Compare June 2, 2023 20:05
@renovate renovate bot force-pushed the renovate/gh-minor branch 14 times, most recently from bf5ec16 to ec78f8f Compare June 13, 2023 20:32
@renovate renovate bot force-pushed the renovate/gh-minor branch 3 times, most recently from d72ec95 to cb841bf Compare June 15, 2023 21:55
@renovate renovate bot force-pushed the renovate/gh-minor branch 12 times, most recently from 06f613d to ca2ecde Compare June 27, 2023 09:24
@renovate renovate bot force-pushed the renovate/gh-minor branch 4 times, most recently from be99d18 to f05dc05 Compare June 29, 2023 13:39
@Hinton Hinton requested a review from a team June 29, 2023 15:21
@renovate renovate bot force-pushed the renovate/gh-minor branch 7 times, most recently from 60ca9b8 to db59282 Compare June 30, 2023 22:41
@mimartin12 mimartin12 enabled auto-merge (squash) July 3, 2023 16:36
@mimartin12 mimartin12 merged commit 3689fb7 into master Jul 3, 2023
43 checks passed
@mimartin12 mimartin12 deleted the renovate/gh-minor branch July 3, 2023 16:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant