Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actions/checkout from 3.0.2 to 3.3.0 #115

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/backup.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
with:
go-version: 1.16
id: go
- uses: actions/checkout@v3.0.2
- uses: actions/checkout@v3.3.0
- name: Upgrade upx
run: |
# try to fix https://github.com/jenkins-zh/jenkins-cli/issues/493
Expand All @@ -32,7 +32,7 @@ jobs:
BackupGit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.0.2
- uses: actions/checkout@v3.3.0
- name: backup
uses: jenkins-zh/git-backup-actions@v0.0.6
env:
Expand All @@ -48,7 +48,7 @@ jobs:
go-version: 1.16
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3.0.2
uses: actions/checkout@v3.3.0
- name: Test
run: |
make test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
go-version: 1.16
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3.0.2
uses: actions/checkout@v3.3.0
- name: Build
env:
JENKINS_VERSION: ${{ matrix.jenkins_version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
if: "!contains(github.event.head_commit.message, 'ci skip')"

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v3.3.0
- name: Update readme
uses: linuxsuren/yaml-readme@v0.0.12
env:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
go-version: 1.16
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3.0.2
uses: actions/checkout@v3.3.0
- name: Upgrade upx
run: |
# try to fix https://github.com/jenkins-zh/jenkins-cli/issues/493
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
go-version: 1.16
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3.0.2
uses: actions/checkout@v3.3.0
- name: Go-linter-1
uses: Jerome1337/golint-action@v1.0.2
with:
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
GO111MODULE: on
steps:
- name: Checkout Source
uses: actions/checkout@v3.0.2
uses: actions/checkout@v3.3.0
- name: Run Gosec Security Scanner
uses: securego/gosec@master
with:
Expand All @@ -108,7 +108,7 @@ jobs:
go-version: 1.16
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3.0.2
uses: actions/checkout@v3.3.0
- name: Test
run: |
make test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3.0.2
uses: actions/checkout@v3.3.0
- name: Unshallow
run: git fetch --prune --unshallow
- name: Set up Go
Expand Down