Unverified Commit b010c941 authored by Chris Wayne's avatar Chris Wayne Committed by GitHub

Fix .github regex to skip drone runs on gh action bumps (#8433)

* Fix .github regex to skip drone runs on gh action bumps Signed-off-by: 's avatarChris Wayne <cwayne18@gmail.com>
parent d349c9db
^.*\.md$ ^.*\.md$
^install\.sh$ ^install\.sh$
^\.droneignore$ ^\.droneignore$
^\.github/*$ ^\.github\/.*$
^MAINTAINERS$ ^MAINTAINERS$
^CODEOWNERS$ ^CODEOWNERS$
^LICENSE$ ^LICENSE$
......
...@@ -18,7 +18,7 @@ jobs: ...@@ -18,7 +18,7 @@ jobs:
timeout-minutes: 20 timeout-minutes: 20
steps: steps:
- name: Checkout K3s - name: Checkout K3s
uses: actions/checkout@v3 uses: actions/checkout@v4
- name: Build K3s binary - name: Build K3s binary
run: | run: |
DOCKER_BUILDKIT=1 SKIP_IMAGE=1 SKIP_AIRGAP=1 SKIP_VALIDATE=1 GOCOVER=1 make DOCKER_BUILDKIT=1 SKIP_IMAGE=1 SKIP_AIRGAP=1 SKIP_VALIDATE=1 GOCOVER=1 make
......
...@@ -43,7 +43,7 @@ jobs: ...@@ -43,7 +43,7 @@ jobs:
working-directory: tests/cgroup/${{ matrix.mode }}/${{ matrix.vm }} working-directory: tests/cgroup/${{ matrix.mode }}/${{ matrix.vm }}
steps: steps:
- name: "Checkout" - name: "Checkout"
uses: actions/checkout@v3 uses: actions/checkout@v4
with: { fetch-depth: 1 } with: { fetch-depth: 1 }
- name: "Download Binary" - name: "Download Binary"
uses: actions/download-artifact@v3 uses: actions/download-artifact@v3
......
...@@ -39,7 +39,7 @@ jobs: ...@@ -39,7 +39,7 @@ jobs:
INSTALL_K3S_SKIP_DOWNLOAD: binary INSTALL_K3S_SKIP_DOWNLOAD: binary
steps: steps:
- name: "Checkout" - name: "Checkout"
uses: actions/checkout@v3 uses: actions/checkout@v4
with: {fetch-depth: 1} with: {fetch-depth: 1}
- name: "Vagrant Cache" - name: "Vagrant Cache"
uses: actions/cache@v3 uses: actions/cache@v3
......
...@@ -42,7 +42,7 @@ jobs: ...@@ -42,7 +42,7 @@ jobs:
max-parallel: 3 max-parallel: 3
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v3 uses: actions/checkout@v4
with: with:
fetch-depth: 1 fetch-depth: 1
- name: Install Go - name: Install Go
......
...@@ -29,7 +29,7 @@ jobs: ...@@ -29,7 +29,7 @@ jobs:
INSTALL_K3S_CHANNEL: ${{ matrix.channel }} INSTALL_K3S_CHANNEL: ${{ matrix.channel }}
steps: steps:
- name: "Checkout" - name: "Checkout"
uses: actions/checkout@v3 uses: actions/checkout@v4
with: {fetch-depth: 1} with: {fetch-depth: 1}
- name: "Vagrant Cache" - name: "Vagrant Cache"
uses: actions/cache@v3 uses: actions/cache@v3
......
...@@ -45,7 +45,7 @@ jobs: ...@@ -45,7 +45,7 @@ jobs:
VAGRANT_EXPERIMENTAL: disks VAGRANT_EXPERIMENTAL: disks
steps: steps:
- name: "Checkout" - name: "Checkout"
uses: actions/checkout@v3 uses: actions/checkout@v4
with: { fetch-depth: 1 } with: { fetch-depth: 1 }
- name: "Download Binary" - name: "Download Binary"
uses: actions/download-artifact@v3 uses: actions/download-artifact@v3
......
...@@ -35,7 +35,7 @@ jobs: ...@@ -35,7 +35,7 @@ jobs:
timeout-minutes: 20 timeout-minutes: 20
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v3 uses: actions/checkout@v4
with: with:
fetch-depth: 1 fetch-depth: 1
- name: Install Go - name: Install Go
......
...@@ -20,7 +20,7 @@ jobs: ...@@ -20,7 +20,7 @@ jobs:
if: github.ref == 'refs/heads/master' if: github.ref == 'refs/heads/master'
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v3 uses: actions/checkout@v4
- name: Install Go - name: Install Go
uses: actions/setup-go@v4 uses: actions/setup-go@v4
......
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