Bump @actions/core from 1.10.1 to 1.11.1 #1264
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Self | |
on: [push, pull_request] | |
jobs: | |
latest: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
# ensure that a PR that doesn't update the dist actually uses the | |
# updated code when it's running the self step | |
- if: github.event_name == 'pull_request' | |
run: npm ci && npm run build && npm run package | |
- uses: ./ | |
- if: ${{ matrix.os == 'windows-latest' }} | |
run: shfmt.exe -d test.bash | |
- if: ${{ matrix.os != 'windows-latest' }} | |
run: shfmt -d test.bash | |
fixed: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
# ensure that a PR that doesn't update the dist actually uses the | |
# updated code when it's running the self step | |
- if: github.event_name == 'pull_request' | |
run: npm ci && npm run build && npm run package | |
- uses: ./ | |
with: | |
shfmt-version: 3.3.1 | |
- if: ${{ matrix.os == 'windows-latest' }} | |
run: shfmt.exe -d test.bash | |
- if: ${{ matrix.os != 'windows-latest' }} | |
run: shfmt -d test.bash |