Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/hossainemruz/toha.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2022-03-08 14:06:59 +0300
committerGitHub <noreply@github.com>2022-03-08 14:06:59 +0300
commit17128e9388f1f782472d677807db73c47a64099c (patch)
tree95c8d78cf028045e7cfc9f6050e566826579ecd8 /.github
parentde221c342d09759d1d969cb12f3f31927bce6f2c (diff)
Bump actions/checkout from 2.4.0 to 3 (#549)
Bumps [actions/checkout](https://github.com/actions/checkout) from 2.4.0 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2.4.0...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/autoprefixer.yml2
-rw-r--r--.github/workflows/codeql-analysis.yml2
-rw-r--r--.github/workflows/md-link-checker.yml2
3 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/autoprefixer.yml b/.github/workflows/autoprefixer.yml
index 7f1ca3c..c363718 100644
--- a/.github/workflows/autoprefixer.yml
+++ b/.github/workflows/autoprefixer.yml
@@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout to latest commit
- uses: actions/checkout@v2.4.0
+ uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml
index 89971fe..e74a695 100644
--- a/.github/workflows/codeql-analysis.yml
+++ b/.github/workflows/codeql-analysis.yml
@@ -39,7 +39,7 @@ jobs:
steps:
- name: Checkout repository
- uses: actions/checkout@v2.4.0
+ uses: actions/checkout@v3
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
diff --git a/.github/workflows/md-link-checker.yml b/.github/workflows/md-link-checker.yml
index e8104c0..e5e922a 100644
--- a/.github/workflows/md-link-checker.yml
+++ b/.github/workflows/md-link-checker.yml
@@ -8,6 +8,6 @@ jobs:
runs-on: ubuntu-latest
steps:
# checkout to latest commit
- - uses: actions/checkout@v2.4.0
+ - uses: actions/checkout@v3
# run markdown linter
- uses: gaurav-nelson/github-action-markdown-link-check@1.0.13