diff options
author | puni9869 <80308335+puni9869@users.noreply.github.com> | 2023-09-16 20:36:27 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-16 15:06:27 +0000 |
commit | 5e039b05801a2ceeb29b23c657110af02834b57e (patch) | |
tree | a3173f8c82ba453931fe1ee146ea50b63c486953 /.github/workflows/release-nightly.yml | |
parent | f91dbbba98c841f11d99be998ed5dd98122a457c (diff) | |
download | gitea-5e039b05801a2ceeb29b23c657110af02834b57e.tar.gz gitea-5e039b05801a2ceeb29b23c657110af02834b57e.zip |
Upgrading the actions/checkout@4 (#27096)
as title
..Upgrading the actions/checkout@4
Signed-off-by: puni9869 <punitinani1@hotmail.com>
Co-authored-by: silverwind <me@silverwind.io>
Diffstat (limited to '.github/workflows/release-nightly.yml')
-rw-r--r-- | .github/workflows/release-nightly.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/release-nightly.yml b/.github/workflows/release-nightly.yml index 0671ecee8b..ef3db2db73 100644 --- a/.github/workflows/release-nightly.yml +++ b/.github/workflows/release-nightly.yml @@ -12,7 +12,7 @@ jobs: nightly-binary: runs-on: actuated-4cpu-16gb steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 # fetch all commits instead of only the last as some branches are long lived and could have many between versions # fetch all tags to ensure that "git describe" reports expected Gitea version, eg. v1.21.0-dev-1-g1234567 - run: git fetch --unshallow --quiet --tags --force @@ -58,7 +58,7 @@ jobs: nightly-docker-rootful: runs-on: actuated-4cpu-16gb steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 # fetch all commits instead of only the last as some branches are long lived and could have many between versions # fetch all tags to ensure that "git describe" reports expected Gitea version, eg. v1.21.0-dev-1-g1234567 - run: git fetch --unshallow --quiet --tags --force @@ -95,7 +95,7 @@ jobs: nightly-docker-rootless: runs-on: actuated-4cpu-16gb steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 # fetch all commits instead of only the last as some branches are long lived and could have many between versions # fetch all tags to ensure that "git describe" reports expected Gitea version, eg. v1.21.0-dev-1-g1234567 - run: git fetch --unshallow --quiet --tags --force |