mirror of https://github.com/k3s-io/k3s.git
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: Chris Wayne <cwayne18@gmail.com>pull/8458/head
parent
d349c9db6c
commit
b010c941cf
|
@ -1,7 +1,7 @@
|
|||
^.*\.md$
|
||||
^install\.sh$
|
||||
^\.droneignore$
|
||||
^\.github/*$
|
||||
^\.github\/.*$
|
||||
^MAINTAINERS$
|
||||
^CODEOWNERS$
|
||||
^LICENSE$
|
||||
|
|
|
@ -18,7 +18,7 @@ jobs:
|
|||
timeout-minutes: 20
|
||||
steps:
|
||||
- name: Checkout K3s
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
- name: Build K3s binary
|
||||
run: |
|
||||
DOCKER_BUILDKIT=1 SKIP_IMAGE=1 SKIP_AIRGAP=1 SKIP_VALIDATE=1 GOCOVER=1 make
|
||||
|
|
|
@ -43,7 +43,7 @@ jobs:
|
|||
working-directory: tests/cgroup/${{ matrix.mode }}/${{ matrix.vm }}
|
||||
steps:
|
||||
- name: "Checkout"
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
with: { fetch-depth: 1 }
|
||||
- name: "Download Binary"
|
||||
uses: actions/download-artifact@v3
|
||||
|
|
|
@ -39,7 +39,7 @@ jobs:
|
|||
INSTALL_K3S_SKIP_DOWNLOAD: binary
|
||||
steps:
|
||||
- name: "Checkout"
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
with: {fetch-depth: 1}
|
||||
- name: "Vagrant Cache"
|
||||
uses: actions/cache@v3
|
||||
|
|
|
@ -42,7 +42,7 @@ jobs:
|
|||
max-parallel: 3
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 1
|
||||
- name: Install Go
|
||||
|
|
|
@ -29,7 +29,7 @@ jobs:
|
|||
INSTALL_K3S_CHANNEL: ${{ matrix.channel }}
|
||||
steps:
|
||||
- name: "Checkout"
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
with: {fetch-depth: 1}
|
||||
- name: "Vagrant Cache"
|
||||
uses: actions/cache@v3
|
||||
|
|
|
@ -45,7 +45,7 @@ jobs:
|
|||
VAGRANT_EXPERIMENTAL: disks
|
||||
steps:
|
||||
- name: "Checkout"
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
with: { fetch-depth: 1 }
|
||||
- name: "Download Binary"
|
||||
uses: actions/download-artifact@v3
|
||||
|
|
|
@ -35,7 +35,7 @@ jobs:
|
|||
timeout-minutes: 20
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 1
|
||||
- name: Install Go
|
||||
|
|
|
@ -20,7 +20,7 @@ jobs:
|
|||
if: github.ref == 'refs/heads/master'
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Install Go
|
||||
uses: actions/setup-go@v4
|
||||
|
|
Loading…
Reference in New Issue