Skip to content

Commit

Permalink
Bump action deps (#1026)
Browse files Browse the repository at this point in the history
Upgrades away from actions that use the deprecated Node16 runtime
  • Loading branch information
tomhjp authored May 10, 2024
1 parent b95b77f commit 72fd0bd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/actions/setup-test-tools/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,18 @@ description: Install bats and python-yq
runs:
using: "composite"
steps:
- uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version: '16'
node-version: '20'
- run: sudo npm install -g bats@${BATS_VERSION}
shell: bash
env:
BATS_VERSION: '1.11.0'
- run: bats -v
shell: bash
- uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1
- uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
with:
python-version: '3.10'
python-version: '3.12'
- run: pip install yq
shell: bash
permissions:
Expand Down

0 comments on commit 72fd0bd

Please sign in to comment.