Skip to content

Commit

Permalink
bumping yq to 4.35.1 (#1)
Browse files Browse the repository at this point in the history
* bumping yq to 4.35.1

* friggin yaml
  • Loading branch information
dcarbone authored Sep 8, 2023
1 parent 4d2a795 commit 64b1b9e
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/example-linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
type: string
required: false
description: "Version of YQ to install"
default: "v4.30.6"
default: "v4.35.1"
download-compressed:
type: boolean
required: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/example-macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
type: string
required: false
description: "Version of YQ to install"
default: "v4.30.6"
default: "v4.35.1"
download-compressed:
type: boolean
required: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/example-windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
type: string
required: false
description: "Version of YQ to install"
default: "v4.30.6"
default: "v4.35.1"
download-compressed:
type: boolean
required: false
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
name: "Test Action - (img: ${{ matrix.image }}; dlcmp: ${{ matrix.download-compressed }}; force: ${{ matrix.force }})"
runs-on: ${{ matrix.image }}
steps:
- uses: actions/checkout@v3.1.0
- uses: actions/checkout@v4

- name: Setup yq
id: install-yq
Expand All @@ -57,6 +57,7 @@ jobs:
- name: Check Outputs - Unix-ish
if: runner.os == 'Linux' || runner.os == 'macOS'
shell: bash -e {0}
# language=sh
run: |
_installed='${{ steps.install-yq.outputs.installed }}'
_err=
Expand Down Expand Up @@ -99,6 +100,7 @@ jobs:
- name: Check Outputs - Windows-ish
if: runner.os == 'Windows'
shell: powershell
# language=pwsh
run: |
$ErrorActionPreference = 'Stop'
Set-StrictMode -Version Latest
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Cross-platform [yq](https://github.com/mikefarah/yq) installer composite action
version:
required: false
description: "Version of YQ to install"
default: "v4.30.6"
default: "v4.35.1"
```
This must be a version with a [corresponding release](https://github.com/mikefarah/yq/releases).
Expand Down
2 changes: 1 addition & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ inputs:
version:
required: false
description: "Version of YQ to install"
default: "v4.30.6"
default: "v4.35.1"
download-compressed:
required: false
description: "If 'true', downloads .tar.gz of binary rather than raw binary. Save the tubes."
Expand Down
2 changes: 1 addition & 1 deletion scripts/unixish.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

set -e
set -euo pipefail

echo '::group::Prep'

Expand Down

0 comments on commit 64b1b9e

Please sign in to comment.