2424 runs-on : ubuntu-22.04
2525 steps :
2626 - name : Checkout the repository
27- uses : actions/checkout@v3
27+ uses : actions/checkout@v4
2828 - name : Run the goat
2929 uses : seisollc/goat@main
3030 with :
@@ -36,25 +36,25 @@ jobs:
3636 runs-on : ubuntu-22.04
3737 steps :
3838 - name : Checkout the repository
39- uses : actions/checkout@v3
39+ uses : actions/checkout@v4
4040 # Necessary for hooks to succeed during tests for commits/schedule
4141 if : github.event_name != 'push_request'
4242 with :
4343 fetch-depth : 0
4444 submodules : ' true'
4545 - name : Checkout the repository
46- uses : actions/checkout@v3
46+ uses : actions/checkout@v4
4747 # Necessary for hooks to succeed during tests for PRs
4848 if : github.event_name == 'pull_request'
4949 with :
5050 ref : ${{ github.event.pull_request.head.ref }}
5151 fetch-depth : 0
5252 submodules : ' true'
5353 - name : Setup python
54- uses : actions/setup-python@v4
54+ uses : actions/setup-python@v5
5555 with :
5656 python-version : ${{ env.python_version }}
57- - uses : actions/cache@v3
57+ - uses : actions/cache@v4
5858 with :
5959 path : ~/.local/share/virtualenvs
6060 key : ${{ runner.os }}-python-${{ env.python_version }}-pipenv-${{ hashFiles('Pipfile.lock') }}
6868 chmod +x "${RUNNER_TEMP}/bin/grype"
6969 echo "${RUNNER_TEMP}/bin" >> "${GITHUB_PATH}"
7070 - name : Install Task
71- uses : arduino/setup-task@v1
71+ uses : arduino/setup-task@v2
7272 - name : Initialize the repo
7373 run : task -v init
7474 - name : Validate the repo
@@ -84,22 +84,22 @@ jobs:
8484 runs-on : ubuntu-22.04
8585 steps :
8686 - name : Checkout the repository
87- uses : actions/checkout@v3
87+ uses : actions/checkout@v4
8888 with :
8989 token : ${{ secrets.SEISO_AUTOMATION_PAT }}
9090 fetch-depth : 0
9191 - name : Setup python
92- uses : actions/setup-python@v4
92+ uses : actions/setup-python@v5
9393 with :
9494 python-version : ${{ env.python_version }}
95- - uses : actions/cache@v3
95+ - uses : actions/cache@v4
9696 with :
9797 path : ~/.local/share/virtualenvs
9898 key : ${{ runner.os }}-python-${{ env.python_version }}-pipenv-${{ hashFiles('Pipfile.lock') }}
9999 - name : Install the dependencies
100100 run : python -m pip install --upgrade pipenv
101101 - name : Install Task
102- uses : arduino/setup-task@v1
102+ uses : arduino/setup-task@v2
103103 - name : Initialize the repo
104104 run : task -v init
105105 - name : Bump the version
@@ -111,7 +111,7 @@ jobs:
111111 git push --atomic origin "${BRANCH}" "${TAG}"
112112 echo "tag=${TAG}" >> "${GITHUB_OUTPUT}"
113113 - name : Publish the release to GitHub
114- uses : softprops/action-gh-release@v1
114+ uses : softprops/action-gh-release@v2
115115 env :
116116 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
117117 with :
0 commit comments