Skip to content

Commit

Permalink
build(deps): bump actions/cache from 3.2.2 to 3.2.3 (#3202)
Browse files Browse the repository at this point in the history
* build(deps): bump actions/cache from 3.2.2 to 3.2.3

Bumps [actions/cache](https://github.com/actions/cache) from 3.2.2 to 3.2.3.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@4723a57...58c146c)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update echo to printf as per shellcheck

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Martijn Verburg <martijnverburg@gmail.com>
  • Loading branch information
dependabot[bot] and karianna committed Jan 10, 2023
1 parent 72a91c4 commit 8ee98a7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ jobs:
steps:
- name: Restore cygwin packages from cache
id: cygwin
uses: actions/cache@4723a57e26efda3a62cbde1812113b730952852d # v3.2.2
uses: actions/cache@58c146cc91c5b9e778e71775dfe9bf1442ad9a12 # v3.2.3
with:
path: C:\cygwin_packages
key: cygwin-packages-${{ runner.os }}-v1
Expand All @@ -229,7 +229,7 @@ jobs:
- name: Restore Visual Studio 2017 from cache
id: vs2017
if: matrix.version == 'jdk8u'
uses: actions/cache@4723a57e26efda3a62cbde1812113b730952852d # v3.2.2
uses: actions/cache@58c146cc91c5b9e778e71775dfe9bf1442ad9a12 # v3.2.3
with:
path: ~/vs2017.exe
key: vs2017
Expand Down Expand Up @@ -266,7 +266,7 @@ jobs:
Start-Process -Wait -FilePath 'C:\temp\git.exe' -ArgumentList '/SILENT /ALLOWDOWNGRADE=1** /COMPONENTS="icons,ext\reg\shellhere,assoc,assoc_sh"'
- name: Set PATH
run: echo "C:\cygwin64\bin;C:\Program Files\Git\bin;" | Out-File -FilePath "$env:GITHUB_PATH" -Encoding utf8 -Append
run: printf "C:\cygwin64\bin;C:\Program Files\Git\bin;" | Out-File -FilePath "$env:GITHUB_PATH" -Encoding utf8 -Append

- name: Cygwin git configuration
shell: bash
Expand Down

0 comments on commit 8ee98a7

Please sign in to comment.