Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update github actions #296

Merged
merged 1 commit into from
Sep 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading