Unverified Commit bd046307 authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto Committed by GitHub

Merge pull request #5450 from mruby/dependabot/github_actions/actions/checkout-2.3.4

build(deps): bump actions/checkout from 2 to 2.3.4
parents 032d11de 800b534a
...@@ -10,7 +10,7 @@ jobs: ...@@ -10,7 +10,7 @@ jobs:
MRUBY_CONFIG: ci/gcc-clang MRUBY_CONFIG: ci/gcc-clang
CC: gcc CC: gcc
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2.3.4
- name: Ruby version - name: Ruby version
run: ruby -v run: ruby -v
- name: Compiler version - name: Compiler version
...@@ -25,7 +25,7 @@ jobs: ...@@ -25,7 +25,7 @@ jobs:
MRUBY_CONFIG: ci/gcc-clang MRUBY_CONFIG: ci/gcc-clang
CC: clang CC: clang
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2.3.4
- name: Ruby version - name: Ruby version
run: ruby -v run: ruby -v
- name: Compiler version - name: Compiler version
...@@ -40,7 +40,7 @@ jobs: ...@@ -40,7 +40,7 @@ jobs:
MRUBY_CONFIG: ci/gcc-clang MRUBY_CONFIG: ci/gcc-clang
CC: gcc CC: gcc
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2.3.4
- name: Ruby version - name: Ruby version
run: ruby -v run: ruby -v
- name: Compiler version - name: Compiler version
...@@ -55,7 +55,7 @@ jobs: ...@@ -55,7 +55,7 @@ jobs:
MRUBY_CONFIG: ci/gcc-clang MRUBY_CONFIG: ci/gcc-clang
CC: clang CC: clang
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2.3.4
- name: Ruby version - name: Ruby version
run: ruby -v run: ruby -v
- name: Compiler version - name: Compiler version
...@@ -70,7 +70,7 @@ jobs: ...@@ -70,7 +70,7 @@ jobs:
MRUBY_CONFIG: ci/gcc-clang MRUBY_CONFIG: ci/gcc-clang
CC: clang CC: clang
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2.3.4
- name: Ruby version - name: Ruby version
run: ruby -v run: ruby -v
- name: Compiler version - name: Compiler version
...@@ -85,7 +85,7 @@ jobs: ...@@ -85,7 +85,7 @@ jobs:
MRUBY_CONFIG: ci/gcc-clang MRUBY_CONFIG: ci/gcc-clang
CC: gcc CC: gcc
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2.3.4
- name: Ruby version - name: Ruby version
run: ruby -v run: ruby -v
- name: Compiler version - name: Compiler version
...@@ -105,7 +105,7 @@ jobs: ...@@ -105,7 +105,7 @@ jobs:
package-dir: C:\cygwin-package package-dir: C:\cygwin-package
cache-version: v1 cache-version: v1
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2.3.4
- uses: actions/cache@v2.1.5 - uses: actions/cache@v2.1.5
with: with:
path: ${{ env.package-dir }} path: ${{ env.package-dir }}
...@@ -145,7 +145,7 @@ jobs: ...@@ -145,7 +145,7 @@ jobs:
env: env:
MRUBY_CONFIG: ci/msvc MRUBY_CONFIG: ci/msvc
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2.3.4
- name: Ruby version - name: Ruby version
run: ruby -v run: ruby -v
- name: Build and test - name: Build and test
......
...@@ -13,7 +13,7 @@ jobs: ...@@ -13,7 +13,7 @@ jobs:
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v2 uses: actions/checkout@v2.3.4
with: with:
# We must fetch at least the immediate parents so that if this is # We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head. # a pull request then we can checkout the head.
......
...@@ -8,7 +8,7 @@ jobs: ...@@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Check Out - name: Check Out
uses: actions/checkout@v2 uses: actions/checkout@v2.3.4
- name: Install - name: Install
run: | run: |
wget -O - -q https://git.io/misspell | sh -s -- -b . wget -O - -q https://git.io/misspell | sh -s -- -b .
...@@ -19,7 +19,7 @@ jobs: ...@@ -19,7 +19,7 @@ jobs:
name: Merge Conflict name: Merge Conflict
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2.3.4
- name: Check merge conflict - name: Check merge conflict
run: | run: |
grep "^<<<<<<< HEAD" $(git ls-files | xargs) && exit 1 || true grep "^<<<<<<< HEAD" $(git ls-files | xargs) && exit 1 || true
...@@ -27,6 +27,6 @@ jobs: ...@@ -27,6 +27,6 @@ jobs:
name: Trailing whitespace name: Trailing whitespace
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2.3.4
- name: Check for trailing whitespace - name: Check for trailing whitespace
run: "! git grep -EIn $'[ \t]+$'" run: "! git grep -EIn $'[ \t]+$'"
...@@ -12,7 +12,7 @@ jobs: ...@@ -12,7 +12,7 @@ jobs:
name: Lint Code Base name: Lint Code Base
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2.3.4
- uses: github/super-linter@v3.17.0 - uses: github/super-linter@v3.17.0
env: env:
ERROR_ON_MISSING_EXEC_BIT: true ERROR_ON_MISSING_EXEC_BIT: true
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment