summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2022-06-07 10:02:48 +0200
committerGitHub <noreply@github.com>2022-06-07 10:02:48 +0200
commit52f255a20d3786cd6911ed7aa194f1d3e5a2892b (patch)
tree157b105d619d0031a547e1813e8da269b180d5d2 /.github
parentdc0e05c99dd9678208ff9b07124ea86a51bed0ba (diff)
downloadelixir-52f255a20d3786cd6911ed7aa194f1d3e5a2892b.tar.gz
Bump actions/checkout from 2 to 3 (#11909)
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 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...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>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml6
-rw-r--r--.github/workflows/notify.yml2
-rw-r--r--.github/workflows/release.yml4
3 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 9bf715fad..534cc57a5 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -30,7 +30,7 @@ jobs:
development: true
runs-on: ubuntu-18.04
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
with:
fetch-depth: 50
- name: Install Erlang/OTP
@@ -86,7 +86,7 @@ jobs:
steps:
- name: Configure Git
run: git config --global core.autocrlf input
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
with:
fetch-depth: 50
- name: Cache Erlang/OTP package
@@ -115,7 +115,7 @@ jobs:
name: Check POSIX-compliant
runs-on: ubuntu-18.04
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
with:
fetch-depth: 50
- name: Install Shellcheck
diff --git a/.github/workflows/notify.yml b/.github/workflows/notify.yml
index 99965268d..af7794836 100644
--- a/.github/workflows/notify.yml
+++ b/.github/workflows/notify.yml
@@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-18.04
name: Notify
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
with:
fetch-depth: 50
- uses: erlef/setup-beam@v1
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 3afe8fa07..091d4050d 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -41,7 +41,7 @@ jobs:
build_docs: build_docs
runs-on: ubuntu-18.04
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
with:
fetch-depth: 50
- uses: erlef/setup-beam@v1
@@ -67,7 +67,7 @@ jobs:
run: |
EX_DOC_LATEST_STABLE_VERSION=$(curl -s https://hex.pm/api/packages/ex_doc | jq --raw-output '.latest_stable_version')
echo "EX_DOC_LATEST_STABLE_VERSION=${EX_DOC_LATEST_STABLE_VERSION}" >> $GITHUB_ENV
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
if: ${{ matrix.build_docs }}
with:
repository: elixir-lang/ex_doc