diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 539b6f61..175e7122 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -13,7 +13,7 @@ jobs: if: ${{ github.event.workflow_run.conclusion == 'success' }} steps: - name: Check out repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: ref: main @@ -85,35 +85,35 @@ jobs: printf $(printf ${GITHUB_REF##*/} | shasum) > build-id.txt - name: Upload Docker-image name to be used by the next job - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: image path: image.txt retention-days: 1 - name: Upload Docker-image version to be used by the next job - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: version path: version.txt retention-days: 1 # - name: Upload Dockerhub-image version to be used by the next job - # uses: actions/upload-artifact@v2 + # uses: actions/upload-artifact@v4 # with: # name: dockerhub_version # path: dockerhub_version.txt # retention-days: 1 - name: Upload environment to be used by the next job - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: environment path: environment.txt retention-days: 1 - name: Upload build-id to be used by the next job - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: build-id path: build-id.txt @@ -136,28 +136,28 @@ jobs: && sudo apt update \ && sudo apt install gh -y - name: Check out repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: repository: ${{ secrets.GITOPS_REPOSITORY_NAME }} token: ${{ secrets.BOT_GITHUB_TOKEN }} - name: Retrieve image - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: image - name: Retrieve version - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: version - name: Retrieve environment - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: environment - name: Retrieve build-id - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: build-id diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml index b790e026..163674bf 100644 --- a/.github/workflows/compile.yml +++ b/.github/workflows/compile.yml @@ -19,7 +19,7 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 # Runs a single command using the runners shell - name: install node diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 564052b7..fb6bb5a3 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -19,7 +19,7 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 # Runs a single command using the runners shell - name: install node diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 53cad6eb..11e802b0 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -27,7 +27,7 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Install node uses: actions/setup-node@v1 diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ba63a15..a4f4d079 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). ## Unreleased +- Fix github actions ## [5.12.2] - 2024-07-25 ### Fixed