Skip to content

Commit

Permalink
Bump actions/checkout from 3 to 4
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Oct 1, 2023
1 parent 6a003b5 commit c91bd5f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Run shellcheck
run: ./build-single-executable aws-micro-release && shellcheck aws-micro-release
test-on-vm:
Expand All @@ -21,7 +21,7 @@ jobs:
os: [ubuntu-22.04, ubuntu-20.04, ubuntu-18.04, macos-12, macos-11, macos-10.15]
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install BATS
run: "[[ -f /usr/local/bin/bats ]] && brew unlink bats || true ; brew install bats-core"
- name: Run BATS tests
Expand All @@ -34,7 +34,7 @@ jobs:
container: ["ubuntu:22.04", "ubuntu:20.04", "ubuntu:18.04", "debian:11-slim", "debian:10-slim", "debian:9-slim"]
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install dependencies and BATS
run: "apt-get update && apt-get install -y openssl curl file bats xxd"
- name: Run BATS tests
Expand All @@ -47,7 +47,7 @@ jobs:
container: ["alpine:edge", "alpine:3.16", "alpine:3.15", "alpine:3.14", "alpine:3.13"]
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install dependencies and BATS
run: "apk add --no-cache bash openssl curl file bats"
- name: Run BATS tests
Expand All @@ -67,6 +67,6 @@ jobs:
curl -L https://kojipkgs.fedoraproject.org//packages/bats/1.7.0/2.fc37/noarch/bats-1.7.0-2.fc37.noarch.rpm -o /tmp/bats.rpm && \
rpm -i /tmp/parallel.rpm /tmp/bats.rpm
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Run BATS tests
run: bats tests/

0 comments on commit c91bd5f

Please sign in to comment.