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

build(deps): update actions/checkout action to v3.6.0 #174

Open
wants to merge 1 commit into
base: main
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
2 changes: 1 addition & 1 deletion .github/actions/unit-tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ runs:
using: "composite"
steps:
- name: Check out code.
uses: actions/checkout@v3.0.2
uses: actions/checkout@v3.6.0
- name: Install Go
uses: actions/[email protected]
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:

steps:
- name: Check out code
uses: actions/checkout@v3.0.2
uses: actions/checkout@v3.6.0
with:
fetch-depth: 0 # need to checkout "all commits" for certain features to work (e.g., get all changed files)

Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Check out repository
uses: actions/checkout@v3.0.2
uses: actions/checkout@v3.6.0
- name: Unit tests
uses: ./.github/actions/unit-tests

Expand All @@ -121,7 +121,7 @@ jobs:
DATETIME: ${{ needs.prepare_ci_run.outputs.DATETIME }}
steps:
- name: Checkout Code
uses: actions/checkout@v3.0.2
uses: actions/checkout@v3.6.0

- name: Load CI Environment from .ci_env
id: load_ci_env
Expand Down Expand Up @@ -169,7 +169,7 @@ jobs:
DATETIME: ${{ needs.prepare_ci_run.outputs.DATETIME }}
steps:
- name: Checkout Code
uses: actions/checkout@v3.0.2
uses: actions/checkout@v3.6.0

- name: Load CI Environment from .ci_env
id: load_ci_env
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/initrepo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
name: A job to initialize a repository freshly cloned from the template
steps:
- name: Checkout
uses: actions/checkout@v3.0.2
uses: actions/checkout@v3.6.0
- name: Setup Go
uses: actions/[email protected]
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
GITEA_NAMESPACE: gitea
steps:
- name: Checkout code
uses: actions/checkout@v3.0.2
uses: actions/checkout@v3.6.0

- name: Install Go
uses: actions/[email protected]
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Check out repository
uses: actions/checkout@v3.0.2
uses: actions/checkout@v3.6.0
- name: Unit tests
uses: ./.github/actions/unit-tests

Expand All @@ -23,7 +23,7 @@ jobs:
VERSION: ${{ needs.pre-release.outputs.RELEASE_TAG }}
steps:
- name: Checkout Code
uses: actions/checkout@v3.0.2
uses: actions/checkout@v3.6.0

- name: Load CI Environment from .ci_env
id: load_ci_env
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
VERSION: ${{ needs.pre-release.outputs.RELEASE_TAG }}
steps:
- name: Checkout Code
uses: actions/checkout@v3.0.2
uses: actions/checkout@v3.6.0

- name: Load CI Environment from .ci_env
id: load_ci_env
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Check out repository
uses: actions/checkout@v3.0.2
uses: actions/checkout@v3.6.0
- name: Unit tests
uses: ./.github/actions/unit-tests

Expand All @@ -23,7 +23,7 @@ jobs:
VERSION: ${{ needs.release.outputs.RELEASE_TAG }}
steps:
- name: Checkout Code
uses: actions/checkout@v3.0.2
uses: actions/checkout@v3.6.0

- name: Load CI Environment from .ci_env
id: load_ci_env
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
VERSION: ${{ needs.release.outputs.RELEASE_TAG }}
steps:
- name: Checkout Code
uses: actions/checkout@v3.0.2
uses: actions/checkout@v3.6.0

- name: Load CI Environment from .ci_env
id: load_ci_env
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reviewdog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code.
uses: actions/checkout@v3.0.2
uses: actions/checkout@v3.6.0
- name: Set up Go
uses: actions/[email protected]
with:
Expand Down
Loading